From d865872bee443b0eec53f98757dd13c59175e47e Mon Sep 17 00:00:00 2001 From: devil_gong Date: Tue, 25 Dec 2018 13:03:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=A7=84=E6=A0=BC=E9=87=8D?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E8=A7=84=E6=A0=BC=E6=94=AF=E6=8C=81=E5=9B=BE?= =?UTF-8?q?=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/view/default/goods/save_info.html | 43 ++++--- .../admin/view/default/public/header.html | 4 +- .../index/view/default/goods/index.html | 29 ++--- .../index/view/default/public/header.html | 2 +- application/service/GoodsService.php | 121 +++++++++++++----- application/service/ResourcesService.php | 2 +- public/install/shopxo_tp5.sql | 62 ++++++--- .../admin/default/images/default-images.png | Bin 6082 -> 5305 bytes public/static/admin/default/js/goods.js | 36 ++++-- public/static/index/default/css/goods.css | 9 +- public/static/index/default/js/goods.js | 113 ++++++++-------- 11 files changed, 260 insertions(+), 161 deletions(-) diff --git a/application/admin/view/default/goods/save_info.html b/application/admin/view/default/goods/save_info.html index 64984e0a5..dc462d6fa 100755 --- a/application/admin/view/default/goods/save_info.html +++ b/application/admin/view/default/goods/save_info.html @@ -169,15 +169,16 @@ {{foreach $specifications.type as $type_v}} × - + {{/foreach}} {{/if}} - 价格(元) + 价格(元) 库存 + 重量(kg) 规格编码 条形码 - 原价(元) + 原价(元) 操作 @@ -191,7 +192,10 @@ - + + + + @@ -213,7 +217,7 @@ {{switch v.data_type}} {{case spec}} - + {{/case}} @@ -225,7 +229,10 @@ - + + + + @@ -252,16 +259,18 @@ +添加规格 +添加一行 - - + +添加手机详情 diff --git a/application/admin/view/default/public/header.html b/application/admin/view/default/public/header.html index 6813703a8..807f48b7e 100755 --- a/application/admin/view/default/public/header.html +++ b/application/admin/view/default/public/header.html @@ -10,8 +10,8 @@ - - + + {{if !empty($module_css)}} {{/if}} diff --git a/application/index/view/default/goods/index.html b/application/index/view/default/goods/index.html index b69cd54c5..1e22b3ee3 100644 --- a/application/index/view/default/goods/index.html +++ b/application/index/view/default/goods/index.html @@ -1,9 +1,5 @@ {{include file="public/header" /}} - -{{include file="public/nav" /}} - - {{include file="public/header_top_nav" /}} @@ -48,9 +44,7 @@
{{if !empty($goods['photo'][0])}} - - {{$goods.title}} - + {{$goods.title}} {{/if}}
@@ -143,14 +137,19 @@
- ¥{{$goods.price}} + ¥{{$goods.price}}
diff --git a/application/index/view/default/public/header.html b/application/index/view/default/public/header.html index 453185e35..ffddf151e 100755 --- a/application/index/view/default/public/header.html +++ b/application/index/view/default/public/header.html @@ -32,7 +32,7 @@ var __my_url__ = '{{:__MY_URL__}}'; var __public__ = '{{$Think.__MY_ROOT__}}'; var __default_theme__ = '{{$default_theme}}'; - var __modal_login_url__ = '{{:Url('index/User/ModalLoginInfo')}}'; + var __modal_login_url__ = '{{:Url('index/user/modallogininfo')}}'; var __user_id__ = {{if empty($user['id'])}}0{{else /}}{{$user.id}}{{/if}}; diff --git a/application/service/GoodsService.php b/application/service/GoodsService.php index 02cc91ec6..147298ef2 100755 --- a/application/service/GoodsService.php +++ b/application/service/GoodsService.php @@ -106,19 +106,19 @@ class GoodsService { if(!empty($data) && is_array($data)) { - $images_host = config('IMAGE_HOST'); + $image_host = config('IMAGE_HOST'); foreach($data as &$v) { if(is_array($v)) { if(isset($v['icon'])) { - $v['icon'] = empty($v['icon']) ? null : $images_host.$v['icon']; + $v['icon'] = empty($v['icon']) ? null : $image_host.$v['icon']; } if(isset($v['big_images'])) { $v['big_images_old'] = $v['big_images']; - $v['big_images'] = empty($v['big_images']) ? null : $images_host.$v['big_images']; + $v['big_images'] = empty($v['big_images']) ? null : $image_host.$v['big_images']; } } } @@ -236,7 +236,7 @@ class GoodsService $is_category = (isset($params['is_category']) && $params['is_category'] == true) ? true : false; // 开始处理数据 - $images_host = config('IMAGE_HOST'); + $image_host = config('IMAGE_HOST'); foreach($data as &$v) { // 商品url地址 @@ -249,21 +249,21 @@ class GoodsService if(isset($v['images'])) { $v['images_old'] = $v['images']; - $v['images'] = empty($v['images']) ? null : $images_host.$v['images']; + $v['images'] = empty($v['images']) ? null : $image_host.$v['images']; } // 视频 if(isset($v['video'])) { $v['video_old'] = $v['video']; - $v['video'] = empty($v['video']) ? null : $images_host.$v['video']; + $v['video'] = empty($v['video']) ? null : $image_host.$v['video']; } // 商品首页推荐图片,不存在则使用商品封面图片 if(isset($v['home_recommended_images'])) { $v['home_recommended_images_old'] = $v['home_recommended_images']; - $v['home_recommended_images'] = empty($v['home_recommended_images']) ? (empty($v['images']) ? null : $v['images']) : $images_host.$v['home_recommended_images']; + $v['home_recommended_images'] = empty($v['home_recommended_images']) ? (empty($v['images']) ? null : $v['images']) : $image_host.$v['home_recommended_images']; } // PC内容处理 @@ -305,7 +305,7 @@ class GoodsService foreach($v['photo'] as &$vs) { $vs['images_old'] = $vs['images']; - $vs['images'] = $images_host.$vs['images']; + $vs['images'] = $image_host.$vs['images']; } } } @@ -341,11 +341,11 @@ class GoodsService $data = Db::name('GoodsContentApp')->where(['goods_id'=>$params['goods_id']])->field('id,images,content')->order('sort asc')->select(); if(!empty($data)) { - $images_host = config('IMAGE_HOST'); + $image_host = config('IMAGE_HOST'); foreach($data as &$v) { $v['images_old'] = $v['images']; - $v['images'] = empty($v['images']) ? null : $images_host.$v['images']; + $v['images'] = empty($v['images']) ? null : $image_host.$v['images']; $v['content_old'] = $v['content']; $v['content'] = empty($v['content']) ? null : explode("\n", $v['content']); } @@ -364,16 +364,32 @@ class GoodsService */ public static function GoodsSpecifications($params = []) { - $data = Db::name('GoodsSpecType')->where(['goods_id'=>$params['goods_id']])->order('id asc')->select(); - if(!empty($data)) + // 条件 + $where = ['goods_id'=>$params['goods_id']]; + + // 规格类型 + $type = Db::name('GoodsSpecType')->where($where)->order('id asc')->select(); + if(!empty($type)) { - foreach($data as &$v) + foreach($type as &$temp_type) { - $v['value'] = json_decode($v['value'], true); - $v['add_time'] = date('Y-m-d H:i:s'); + $temp_type['value'] = json_decode($temp_type['value'], true); + $temp_type['add_time'] = date('Y-m-d H:i:s'); } } - return $data; + + // 规格图片 + $images = Db::name('GoodsSpecImages')->where($where)->column('name,images'); + if(!empty($images)) + { + $image_host = config('IMAGE_HOST'); + foreach($images as &$temp_iamges) + { + $temp_iamges = $image_host.$temp_iamges; + } + } + + return ['type'=>$type, 'images'=>$images]; } /** @@ -562,12 +578,12 @@ class GoodsService $data = Db::name('GoodsFavor')->alias('f')->join(['__GOODS__'=>'g'], 'g.id=f.goods_id')->field($field)->where($where)->limit($m, $n)->order($order_by)->select(); if(!empty($data)) { - $images_host = config('IMAGE_HOST'); + $image_host = config('IMAGE_HOST'); foreach($data as &$v) { // 图片 $v['images_old'] = $v['images']; - $v['images'] = empty($v['images']) ? null : $images_host.$v['images']; + $v['images'] = empty($v['images']) ? null : $image_host.$v['images']; $v['goods_url'] = HomeUrl('goods', 'index', ['id'=>$v['goods_id']]); } @@ -709,11 +725,11 @@ class GoodsService $data = Db::name('GoodsBrowse')->alias('b')->join(['__GOODS__'=>'g'], 'g.id=b.goods_id')->field($field)->where($where)->limit($m, $n)->order($order_by)->select(); if(!empty($data)) { - $images_host = config('IMAGE_HOST'); + $image_host = config('IMAGE_HOST'); foreach($data as &$v) { $v['images_old'] = $v['images']; - $v['images'] = empty($v['images']) ? null : $images_host.$v['images']; + $v['images'] = empty($v['images']) ? null : $image_host.$v['images']; $v['goods_url'] = HomeUrl('goods', 'index', ['id'=>$v['goods_id']]); } } @@ -1069,6 +1085,7 @@ class GoodsService { $data = []; $title = []; + $images = []; // 规格值 foreach($params as $k=>$v) @@ -1092,7 +1109,7 @@ class GoodsService // 规格名称 if(!empty($data[0])) { - $count = count($data[0])-5; + $count = count($data[0])-6; if($count > 0) { $names = array_slice($data[0], 0, $count); @@ -1130,7 +1147,14 @@ class GoodsService } else { return DataReturn('请填写规格', -1); } - return DataReturn('success', 0, ['data'=>$data, 'title'=>$title]); + + // 规格图片 + if(!empty($params['spec_images'])) + { + $images = $params['spec_images']; + } + + return DataReturn('success', 0, ['data'=>$data, 'title'=>$title, 'images'=>$images]); } /** @@ -1310,6 +1334,7 @@ class GoodsService Db::name('GoodsSpecType')->where(['goods_id'=>$goods_id])->delete(); Db::name('GoodsSpecValue')->where(['goods_id'=>$goods_id])->delete(); Db::name('GoodsSpecBase')->where(['goods_id'=>$goods_id])->delete(); + Db::name('GoodsSpecImages')->where(['goods_id'=>$goods_id])->delete(); // 类型 if(!empty($data['title'])) @@ -1317,7 +1342,7 @@ class GoodsService foreach($data['title'] as &$v) { $v['goods_id'] = $goods_id; - $v['value'] = json_encode($v['value']); + $v['value'] = json_encode(array_values($v['value'])); $v['add_time'] = time(); } if(Db::name('GoodsSpecType')->insertAll($data['title']) < count($data['title'])) @@ -1331,10 +1356,11 @@ class GoodsService { // 基础字段 $count = count($data['data'][0]); - $temp_key = ['price', 'inventory', 'coding', 'barcode', 'original_price']; + $temp_key = ['price', 'inventory', 'weight', 'coding', 'barcode', 'original_price']; + $key_count = count($temp_key); - // 等于5则只有一列基础规格 - if($count == 5) + // 等于key总数则只有一列基础规格 + if($count == $key_count) { $temp_data = [ 'goods_id' => $goods_id, @@ -1352,7 +1378,7 @@ class GoodsService // 多规格操作 } else { - $base_start = $count-5; + $base_start = $count-$key_count; $value = []; $base = []; foreach($data['data'] as $v) @@ -1395,6 +1421,26 @@ class GoodsService } } } + + // 规格图片 + if(!empty($data['images'])) + { + $images = []; + foreach($data['images'] as $k=>$v) + { + $images[] = [ + 'goods_id' => $goods_id, + 'name' => $k, + 'images' => ResourcesService::AttachmentPathHandle($v), + 'add_time' => time(), + ]; + } + if(Db::name('GoodsSpecImages')->insertAll($images) < count($images)) + { + return DataReturn('规格图片添加失败', -1); + } + } + return DataReturn('添加成功', 0); } @@ -1556,7 +1602,7 @@ class GoodsService { foreach($value as $k=>&$v) { - $base = Db::name('GoodsSpecBase')->field('price,inventory,coding,barcode,original_price')->find($k); + $base = Db::name('GoodsSpecBase')->find($k); $v[] = [ 'data_type' => 'base', 'data' => $base, @@ -1564,16 +1610,29 @@ class GoodsService } } } else { - $base = Db::name('GoodsSpecBase')->where($where)->field('price,inventory,coding,barcode,original_price')->find(); + $base = Db::name('GoodsSpecBase')->where($where)->find(); $value[][] = [ 'data_type' => 'base', 'data' => $base, ]; } + // 规格图片 + $images = Db::name('GoodsSpecImages')->where($where)->select(); + if(!empty($images)) + { + $image_host = config('IMAGE_HOST'); + foreach($images as &$temp_iamges) + { + $temp_iamges['images_old'] = $temp_iamges['images']; + $temp_iamges['images'] = $image_host.$temp_iamges['images']; + } + } + return [ - 'type' => $type, - 'value' => array_values($value), + 'type' => $type, + 'value' => array_values($value), + 'images' => $images, ]; } diff --git a/application/service/ResourcesService.php b/application/service/ResourcesService.php index 9521fd25f..74da6b7dd 100755 --- a/application/service/ResourcesService.php +++ b/application/service/ResourcesService.php @@ -49,7 +49,7 @@ class ResourcesService */ public static function AttachmentPathHandle($value) { - return str_replace([__MY_URL__, __MY_ROOT__], DS, $value); + return empty($value) ? '' : str_replace([__MY_URL__, __MY_ROOT__], DS, $value); } /** diff --git a/public/install/shopxo_tp5.sql b/public/install/shopxo_tp5.sql index b15755d43..4faeed761 100755 --- a/public/install/shopxo_tp5.sql +++ b/public/install/shopxo_tp5.sql @@ -11,7 +11,7 @@ Target Server Version : 50722 File Encoding : utf-8 - Date: 12/24/2018 17:40:27 PM + Date: 12/25/2018 13:02:33 PM */ SET NAMES utf8mb4; @@ -40,7 +40,7 @@ CREATE TABLE `s_admin` ( -- Records of `s_admin` -- ---------------------------- BEGIN; -INSERT INTO `s_admin` VALUES ('1', 'admin', '9d02c0078de9f20fbaa6f0f8807cb322', '598250', '17602128368', '0', '364', '1545617458', '1', '1481350313', '1543486561'), ('3', 'testtest', 'a6afd9b558f3da602f73232b6b4ff227', '907898', '13222333333', '2', '48', '1543508166', '13', '1483947758', '1542252461'); +INSERT INTO `s_admin` VALUES ('1', 'admin', '228a67e6b75c4f69d8da1e4c7561559c', '840427', '17602128368', '0', '365', '1545644976', '1', '1481350313', '1543486561'), ('3', 'testtest', 'a6afd9b558f3da602f73232b6b4ff227', '907898', '13222333333', '2', '48', '1543508166', '13', '1483947758', '1542252461'); COMMIT; -- ---------------------------- @@ -410,8 +410,8 @@ CREATE TABLE `s_goods` ( -- Records of `s_goods` -- ---------------------------- BEGIN; -INSERT INTO `s_goods` VALUES ('1', '0', '趣莱福 玉米香脆片 336g', '', '零食', '0', '999998', '包', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '', '0.00', '0.00', '36.00', '45.00', '0.00', '1', '1', '0', '1', '1', '1', '


', '2', '0', '51', '', '', '0', '1531201588', '1535006379'), ('2', '0', '优果优选 美国进口车厘子 9.5R 2斤装 (27.5~30mm) 1kg', '', '', '0', '999999', '斤', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '', '0.00', '0.00', '168.00', '236.00', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '39', '', '/static/upload/images/goods/compr/2018/08/10/20180810184612978674162.jpg', '0', '1531218445', '1535006388'), ('3', '0', '人头马 V.S.O.P特优香槟干邑白兰地 700ml', '', '酒水', '35', '999999', '瓶', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '', '0.00', '0.00', '448.00', '499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"g3-d-1.jpg\"/

', '2', '0', '9', '', '/static/upload/images/goods/compr/2018/08/13/20180813095930292687029.jpg', '0', '1534125570', '1535006396'), ('4', '0', '费列罗FERRERO ROCHER T8榛果威化巧克力 100g', '', '礼品', '0', '9999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '', '0.00', '0.00', '42.00', '43.80', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '69', '', '/static/upload/images/goods/compr/2018/08/13/20180813101233080114919.jpg', '0', '1534126353', '1535006404'), ('5', '0', '伊桐 经典优选赤霞珠红葡萄酒双支木盒装 750ml*2', '', '酒水', '35', '999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '', '0.00', '0.00', '128.00', '168.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"1534127370366748.png\"/\"1534127370257552.png\"/\"1534127370823136.png\"/\"g5-d-4.png\"/\"1534127088462306.png\"/



', '3', '0', '15', '', '/static/upload/images/goods/compr/2018/08/13/2018081310344571617133.jpg', '0', '1534127685', '1535006368'), ('6', '0', '阳澄碧波 阳澄湖 六月黄 2.0两*8只', '', '食品', '0', '99', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '238.00', '238.00', '238.00', '208.00', '208.00', '208.00', '0', '1', '0', '1', '1', '1', '


', '3', '2', '21', '', '/static/upload/images/goods/compr/2018/08/13/201808131041041669778187.jpg', '0', '1534128064', '1544897748'), ('7', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '手机', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '', '0.00', '0.00', '2998.90', '2998.90', '0.00', '0', '1', '0', '1', '1', '1', '

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

\"10.jpg\"\"3-.jpg\"

\"白边_Dd.jpg\"

\"10_u.jpg\"\"10_c.jpg\"\"QU.jpg\"


', '2', '0', '28', '/static/upload/video/goods/2018/10/19/2018101914263503485.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814152351571446066.jpg', '0', '1534231431', '1539930395'), ('8', '0', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', 'H60-L01', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '', '0.00', '0.00', '1999.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '3', '0', '32', '/static/upload/video/goods/2018/10/19/2018101914202628900.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153005162366855.jpg', '0', '1534231805', '1539930026'), ('9', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', 'MX4', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '', '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '57', '/static/upload/video/goods/2018/10/19/2018101914245064258.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153349537451584.jpg', '0', '1534232029', '1539930290'), ('10', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', 'G8508S', '0', '666666', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '', '0.00', '0.00', '3888.00', '3999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '50', '/static/upload/video/goods/2018/10/19/2018101914253503074.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153739604261343.jpg', '0', '1534232259', '1539930335'), ('11', '0', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', 'MI4', '0', '7', '步', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '133.00', '133.00', '133.00', '10.00', '10.00', '10.00', '0', '1', '0', '1', '1', '1', '

\"概述\"\"image\"/\"image\"/\"概述5\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"工艺_04\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '2', '319', '/static/upload/video/goods/2018/10/19/2018101914194959299.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814154224408550988.jpg', '0', '1534232544', '1545638923'), ('12', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '675', '步', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '150.00-30900.00', '150.00', '30900.00', '20.00-130010.00', '20.00', '130010.00', '0', '1', '0', '1', '1', '1', '

 



', '4', '3', '404', '/static/upload/video/goods/2018/10/19/2018101914230052570.mp4', '/static/upload/images/goods/compr/2018/08/14/201808141555342591316116.jpg', '0', '1534233334', '1544897675'), ('13', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '', '0.00', '0.00', '328.00', '329.00', '0.00', '0', '1', '0', '1', '1', '1', '

 

 

 

', '3', '0', '8', '', '/static/upload/images/goods/compr/2018/08/17/20180817104457164038763.jpg', '0', '1534329397', '1536303431'), ('14', '33', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '', '0.00', '0.00', '228.00', '388.00', '0.00', '0', '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号~下摆蕾丝拼接不会很平整的哦~

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

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '4', '0', '79', '', '/static/upload/images/goods/compr/2018/08/17/201808171411195446519643.jpg', '0', '1534485901', '1536649267'), ('15', '26', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '', '0.00', '0.00', '258.00', '398.00', '0.00', '0', '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号哦~

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

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

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '5', '0', '21', '', '/static/upload/images/goods/compr/2018/08/17/201808171410433199766613.jpg', '0', '1534486243', '1536219046'), ('16', '7', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '999994', '件', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '', '0.00', '0.00', '79.68', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '1', '316', '', '/static/upload/images/goods/compr/2018/08/17/201808171421216192271281.jpg', '0', '1534486750', '1536902656'), ('17', '2', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '', '0.00', '0.00', '202.00', '635.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '72', '', '/static/upload/images/goods/compr/2018/08/17/20180817143437974622206.jpg', '0', '1534487293', '1536215582'), ('18', '4', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '35', '7', '件', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '', '0.00', '0.00', '0.01', '0.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '148', '', '/static/upload/images/goods/compr/2018/08/17/201808171428136171021059.jpg', '0', '1534487677', '1542175364'), ('19', '0', '德国TAWA帐篷户外2人3-4人露营防雨家庭野营全自动加厚二室一厅', '', '', '35', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '', '0.00', '0.00', '477.00', '1299.00', '0.00', '0', '1', '0', '1', '1', '1', '
\"\"
\"\"
\"\"
\"\"
\"\"

\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"


', '3', '0', '8', '/static/upload/video/goods/2018/10/19/2018101910560762702.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019105606682856600.jpg', '0', '1539917767', '0'), ('20', '0', '【热销48万】骆驼帐篷户外3-4人 全自动加厚防雨2人野营野外帐篷', '', '', '19', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '', '0.00', '0.00', '223.00', '1399.00', '0.00', '0', '1', '0', '1', '1', '1', '

温馨提示:套餐2(蓝绿+宝蓝)三件套、套餐3(蓝色+绿色)四件套预售,拍下付款20天发货,请知悉,祝亲购物愉快!

 

 

此款帐篷正常情况下适合3-4人使用(内账尺寸:200*180*115cm),2人使用更大更宽敞。

温馨提示:收帐前,请先将侧杆下方关节卡槽向下拉开解锁,再折叠帐篷(切勿直接折起侧杆,容易折断损坏)

帐篷收纳袋内侧缝有详细的开收帐说明书,如有不明白的亲可看说明书或联系在线客服为您解答。


', '2', '0', '5', '/static/upload/video/goods/2018/10/19/2018101911094581983.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019110945541043212.jpg', '0', '1539918585', '0'); -INSERT INTO `s_goods` VALUES ('21', '0', '原地踏步机运动瘦身器械男女减肥健身器材家用小型跑步机懒人神器', '', '', '0', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '', '0.00', '0.00', '129.90', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '12', '/static/upload/video/goods/2018/10/19/2018101911464932889.mp4', '/static/upload/images/goods/compr/2018/10/19/201810191146492481958310.jpg', '0', '1539920809', '0'), ('22', '89', '思凯乐户外新款冲锋衣男女羽绒内胆三合一两件套防水纯色外套', '', '', '0', '99997', '件', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '', '0.00', '0.00', '1099.00', '1980.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"\"



', '2', '3', '5', '/static/upload/video/goods/2018/10/19/2018101913481793316.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019134817532122908.jpg', '0', '1539928098', '0'), ('23', '0', '春秋季单层冲锋衣女薄款大码中老年弹力户外外套防风透气妈妈装夏', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '', '0.00', '0.00', '189.00', '988.00', '0.00', '10', '1', '0', '1', '1', '1', '

重大消息:本店支持团队、公司印LOGO、刺绣。有需请咨询在线客服。此款产品由于太热销,少部分颜色尺码断货,工厂正在马不停蹄的赶货,


', '4', '0', '12', '/static/upload/video/goods/2018/10/19/2018101913543473411.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019135434223247744.jpg', '0', '1539928474', '1544381580'), ('24', '0', '【经典款】Columbia哥伦比亚户外男款登山徒步鞋YM1182', '', '', '0', '999996', '双', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '', '0.00', '0.00', '479.00', '799.00', '0.00', '300', '1', '0', '1', '1', '1', '

\"


', '3', '0', '33', '/static/upload/video/goods/2018/10/19/2018101914032368175.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019140323256116973.jpg', '0', '1539929003', '1544773906'), ('25', '2', '测试商品', '', 'test', '1', '55', '件', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '0.00-550.00', '0.00', '550.00', '1.00-55.00', '1.00', '55.00', '0', '1', '0', '1', '1', '1', '



\"1544432935463577.png\"/


\"1544468764927804.jpg\"/

1544463491875330.zip

1544463542867338.txt

是非观是非观

分隔符哥发高速费

分隔符

', '5', '0', '113', '/static/upload/video/goods/2018/12/10/1544436783270558.mp4', '/static/upload/images/goods/compr/2018/12/10/201812100300344059116473.png', '0', '1544382034', '1544984544'); +INSERT INTO `s_goods` VALUES ('1', '0', '趣莱福 玉米香脆片 336g', '', '零食', '0', '999998', '包', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '', '0.00', '0.00', '36.00', '45.00', '0.00', '1', '1', '0', '1', '1', '1', '


', '2', '0', '51', '', '', '0', '1531201588', '1535006379'), ('2', '0', '优果优选 美国进口车厘子 9.5R 2斤装 (27.5~30mm) 1kg', '', '', '0', '999999', '斤', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '', '0.00', '0.00', '168.00', '236.00', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '39', '', '/static/upload/images/goods/compr/2018/08/10/20180810184612978674162.jpg', '0', '1531218445', '1535006388'), ('3', '0', '人头马 V.S.O.P特优香槟干邑白兰地 700ml', '', '酒水', '35', '999999', '瓶', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '', '0.00', '0.00', '448.00', '499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"g3-d-1.jpg\"/

', '2', '0', '9', '', '/static/upload/images/goods/compr/2018/08/13/20180813095930292687029.jpg', '0', '1534125570', '1535006396'), ('4', '0', '费列罗FERRERO ROCHER T8榛果威化巧克力 100g', '', '礼品', '0', '9999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '', '0.00', '0.00', '42.00', '43.80', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '69', '', '/static/upload/images/goods/compr/2018/08/13/20180813101233080114919.jpg', '0', '1534126353', '1535006404'), ('5', '0', '伊桐 经典优选赤霞珠红葡萄酒双支木盒装 750ml*2', '', '酒水', '35', '999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '', '0.00', '0.00', '128.00', '168.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"1534127370366748.png\"/\"1534127370257552.png\"/\"1534127370823136.png\"/\"g5-d-4.png\"/\"1534127088462306.png\"/



', '3', '0', '15', '', '/static/upload/images/goods/compr/2018/08/13/2018081310344571617133.jpg', '0', '1534127685', '1535006368'), ('6', '0', '阳澄碧波 阳澄湖 六月黄 2.0两*8只', '', '食品', '0', '99', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '238.00', '238.00', '238.00', '208.00', '208.00', '208.00', '0', '1', '0', '1', '1', '1', '


', '3', '2', '21', '', '/static/upload/images/goods/compr/2018/08/13/201808131041041669778187.jpg', '0', '1534128064', '1544897748'), ('7', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '手机', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '', '0.00', '0.00', '2998.90', '2998.90', '0.00', '0', '1', '0', '1', '1', '1', '

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

\"10.jpg\"\"3-.jpg\"

\"白边_Dd.jpg\"

\"10_u.jpg\"\"10_c.jpg\"\"QU.jpg\"


', '2', '0', '28', '/static/upload/video/goods/2018/10/19/2018101914263503485.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814152351571446066.jpg', '0', '1534231431', '1539930395'), ('8', '0', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', 'H60-L01', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '', '0.00', '0.00', '1999.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '3', '0', '32', '/static/upload/video/goods/2018/10/19/2018101914202628900.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153005162366855.jpg', '0', '1534231805', '1539930026'), ('9', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', 'MX4', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '', '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '57', '/static/upload/video/goods/2018/10/19/2018101914245064258.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153349537451584.jpg', '0', '1534232029', '1539930290'), ('10', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', 'G8508S', '0', '666666', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '', '0.00', '0.00', '3888.00', '3999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '50', '/static/upload/video/goods/2018/10/19/2018101914253503074.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153739604261343.jpg', '0', '1534232259', '1539930335'), ('11', '0', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', 'MI4', '0', '7', '步', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '133.00', '133.00', '133.00', '10.00', '10.00', '10.00', '0', '1', '0', '1', '1', '1', '

\"概述\"\"image\"/\"image\"/\"概述5\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"工艺_04\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '2', '319', '/static/upload/video/goods/2018/10/19/2018101914194959299.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814154224408550988.jpg', '0', '1534232544', '1545638923'), ('12', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '675', '步', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '150.00-30900.00', '150.00', '30900.00', '20.00-130010.00', '20.00', '130010.00', '0', '1', '0', '1', '1', '1', '

 



', '4', '3', '405', '/static/upload/video/goods/2018/10/19/2018101914230052570.mp4', '/static/upload/images/goods/compr/2018/08/14/201808141555342591316116.jpg', '0', '1534233334', '1544897675'), ('13', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '', '0.00', '0.00', '328.00', '329.00', '0.00', '0', '1', '0', '1', '1', '1', '

 

 

 

', '3', '0', '8', '', '/static/upload/images/goods/compr/2018/08/17/20180817104457164038763.jpg', '0', '1534329397', '1536303431'), ('14', '33', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '', '0.00', '0.00', '228.00', '388.00', '0.00', '0', '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号~下摆蕾丝拼接不会很平整的哦~

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

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '4', '0', '79', '', '/static/upload/images/goods/compr/2018/08/17/201808171411195446519643.jpg', '0', '1534485901', '1536649267'), ('15', '26', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '', '0.00', '0.00', '258.00', '398.00', '0.00', '0', '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号哦~

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

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

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '5', '0', '21', '', '/static/upload/images/goods/compr/2018/08/17/201808171410433199766613.jpg', '0', '1534486243', '1536219046'), ('16', '7', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '999994', '件', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '', '0.00', '0.00', '79.68', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '1', '317', '', '/static/upload/images/goods/compr/2018/08/17/201808171421216192271281.jpg', '0', '1534486750', '1536902656'), ('17', '2', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '', '0.00', '0.00', '202.00', '635.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '72', '', '/static/upload/images/goods/compr/2018/08/17/20180817143437974622206.jpg', '0', '1534487293', '1536215582'), ('18', '4', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '35', '7', '件', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '', '0.00', '0.00', '0.01', '0.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '148', '', '/static/upload/images/goods/compr/2018/08/17/201808171428136171021059.jpg', '0', '1534487677', '1542175364'), ('19', '0', '德国TAWA帐篷户外2人3-4人露营防雨家庭野营全自动加厚二室一厅', '', '', '35', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '', '0.00', '0.00', '477.00', '1299.00', '0.00', '0', '1', '0', '1', '1', '1', '
\"\"
\"\"
\"\"
\"\"
\"\"

\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"


', '3', '0', '8', '/static/upload/video/goods/2018/10/19/2018101910560762702.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019105606682856600.jpg', '0', '1539917767', '0'), ('20', '0', '【热销48万】骆驼帐篷户外3-4人 全自动加厚防雨2人野营野外帐篷', '', '', '19', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '', '0.00', '0.00', '223.00', '1399.00', '0.00', '0', '1', '0', '1', '1', '1', '

温馨提示:套餐2(蓝绿+宝蓝)三件套、套餐3(蓝色+绿色)四件套预售,拍下付款20天发货,请知悉,祝亲购物愉快!

 

 

此款帐篷正常情况下适合3-4人使用(内账尺寸:200*180*115cm),2人使用更大更宽敞。

温馨提示:收帐前,请先将侧杆下方关节卡槽向下拉开解锁,再折叠帐篷(切勿直接折起侧杆,容易折断损坏)

帐篷收纳袋内侧缝有详细的开收帐说明书,如有不明白的亲可看说明书或联系在线客服为您解答。


', '2', '0', '5', '/static/upload/video/goods/2018/10/19/2018101911094581983.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019110945541043212.jpg', '0', '1539918585', '0'); +INSERT INTO `s_goods` VALUES ('21', '0', '原地踏步机运动瘦身器械男女减肥健身器材家用小型跑步机懒人神器', '', '', '0', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '', '0.00', '0.00', '129.90', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '12', '/static/upload/video/goods/2018/10/19/2018101911464932889.mp4', '/static/upload/images/goods/compr/2018/10/19/201810191146492481958310.jpg', '0', '1539920809', '0'), ('22', '89', '思凯乐户外新款冲锋衣男女羽绒内胆三合一两件套防水纯色外套', '', '', '0', '99997', '件', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '', '0.00', '0.00', '1099.00', '1980.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"\"



', '2', '3', '5', '/static/upload/video/goods/2018/10/19/2018101913481793316.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019134817532122908.jpg', '0', '1539928098', '0'), ('23', '0', '春秋季单层冲锋衣女薄款大码中老年弹力户外外套防风透气妈妈装夏', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '', '0.00', '0.00', '189.00', '988.00', '0.00', '10', '1', '0', '1', '1', '1', '

重大消息:本店支持团队、公司印LOGO、刺绣。有需请咨询在线客服。此款产品由于太热销,少部分颜色尺码断货,工厂正在马不停蹄的赶货,


', '4', '0', '12', '/static/upload/video/goods/2018/10/19/2018101913543473411.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019135434223247744.jpg', '0', '1539928474', '1544381580'), ('24', '0', '【经典款】Columbia哥伦比亚户外男款登山徒步鞋YM1182', '', '', '0', '999996', '双', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '', '0.00', '0.00', '479.00', '799.00', '0.00', '300', '1', '0', '1', '1', '1', '

\"


', '3', '0', '33', '/static/upload/video/goods/2018/10/19/2018101914032368175.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019140323256116973.jpg', '0', '1539929003', '1544773906'), ('25', '2', '测试商品', '', 'test', '1', '253', '件', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '111.00-765.00', '111.00', '765.00', '10.00-70.00', '10.00', '70.00', '0', '1', '0', '1', '1', '1', '



\"1544432935463577.png\"/


\"1544468764927804.jpg\"/

1544463491875330.zip

1544463542867338.txt

是非观是非观

分隔符哥发高速费

分隔符

', '5', '0', '159', '/static/upload/video/goods/2018/12/10/1544436783270558.mp4', '/static/upload/images/goods/compr/2018/12/10/201812100300344059116473.png', '0', '1544382034', '1545708979'); COMMIT; -- ---------------------------- @@ -478,7 +478,7 @@ CREATE TABLE `s_goods_browse` ( -- Records of `s_goods_browse` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_browse` VALUES ('42', '3', '90', '1539758622', '1539758622'), ('43', '11', '90', '1539758709', '1545639820'), ('44', '14', '90', '1539758716', '1544381202'), ('45', '15', '90', '1539758741', '1539765071'), ('46', '2', '90', '1539759257', '1539759803'), ('47', '18', '90', '1539759775', '1542011605'), ('48', '16', '90', '1539759778', '1539954438'), ('49', '12', '90', '1539759783', '1545639296'), ('50', '4', '90', '1539759797', '1539759797'), ('51', '9', '90', '1539759800', '1539931661'), ('52', '12', '77', '1539759823', '1545103745'), ('53', '14', '77', '1539764322', '1542787750'), ('54', '11', '77', '1539764363', '1543202285'), ('55', '23', '90', '1539933225', '1539968526'), ('56', '24', '90', '1540054630', '1544821073'), ('57', '18', '77', '1542175370', '1542786891'), ('58', '24', '77', '1542178932', '1543220142'), ('59', '22', '77', '1542179203', '1542185675'), ('60', '23', '77', '1542179360', '1542866469'), ('61', '19', '77', '1542179367', '1542179367'), ('62', '16', '77', '1542181847', '1542868257'), ('63', '6', '77', '1542185670', '1542792831'), ('64', '20', '77', '1542186007', '1542186007'), ('65', '1', '77', '1542783108', '1545099132'), ('66', '4', '77', '1542783579', '1542783579'), ('67', '9', '77', '1542792816', '1542792816'), ('68', '8', '77', '1542792822', '1542792822'), ('69', '21', '77', '1542792837', '1542792837'), ('70', '10', '77', '1542866488', '1542866488'), ('72', '25', '90', '1544382038', '1545307193'), ('73', '22', '90', '1544382647', '1544382647'), ('74', '6', '90', '1544897702', '1545104778'), ('75', '25', '77', '1545099187', '1545102080'), ('76', '10', '90', '1545307199', '1545307199'); +INSERT INTO `s_goods_browse` VALUES ('42', '3', '90', '1539758622', '1539758622'), ('43', '11', '90', '1539758709', '1545639820'), ('44', '14', '90', '1539758716', '1544381202'), ('45', '15', '90', '1539758741', '1539765071'), ('46', '2', '90', '1539759257', '1539759803'), ('47', '18', '90', '1539759775', '1542011605'), ('48', '16', '90', '1539759778', '1545713570'), ('49', '12', '90', '1539759783', '1545639296'), ('50', '4', '90', '1539759797', '1539759797'), ('51', '9', '90', '1539759800', '1539931661'), ('52', '12', '77', '1539759823', '1545103745'), ('53', '14', '77', '1539764322', '1542787750'), ('54', '11', '77', '1539764363', '1543202285'), ('55', '23', '90', '1539933225', '1539968526'), ('56', '24', '90', '1540054630', '1544821073'), ('57', '18', '77', '1542175370', '1542786891'), ('58', '24', '77', '1542178932', '1543220142'), ('59', '22', '77', '1542179203', '1542185675'), ('60', '23', '77', '1542179360', '1542866469'), ('61', '19', '77', '1542179367', '1542179367'), ('62', '16', '77', '1542181847', '1542868257'), ('63', '6', '77', '1542185670', '1542792831'), ('64', '20', '77', '1542186007', '1542186007'), ('65', '1', '77', '1542783108', '1545099132'), ('66', '4', '77', '1542783579', '1542783579'), ('67', '9', '77', '1542792816', '1542792816'), ('68', '8', '77', '1542792822', '1542792822'), ('69', '21', '77', '1542792837', '1542792837'), ('70', '10', '77', '1542866488', '1542866488'), ('72', '25', '90', '1544382038', '1545714108'), ('73', '22', '90', '1544382647', '1544382647'), ('74', '6', '90', '1544897702', '1545104778'), ('75', '25', '77', '1545099187', '1545102080'), ('76', '10', '90', '1545307199', '1545307199'); COMMIT; -- ---------------------------- @@ -525,13 +525,13 @@ CREATE TABLE `s_goods_category_join` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `category_id` (`category_id`) -) ENGINE=InnoDB AUTO_INCREMENT=633 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; +) ENGINE=InnoDB AUTO_INCREMENT=673 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; -- ---------------------------- -- Records of `s_goods_category_join` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_category_join` VALUES ('276', '5', '240', '1535006368'), ('277', '5', '272', '1535006368'), ('278', '1', '236', '1535006379'), ('279', '1', '248', '1535006379'), ('280', '2', '245', '1535006388'), ('281', '2', '296', '1535006388'), ('282', '3', '240', '1535006396'), ('283', '3', '271', '1535006396'), ('284', '4', '236', '1535006404'), ('285', '4', '247', '1535006404'), ('329', '17', '188', '1536215582'), ('330', '17', '194', '1536215582'), ('331', '17', '195', '1536215582'), ('332', '17', '197', '1536215582'), ('333', '17', '198', '1536215582'), ('336', '15', '304', '1536219046'), ('337', '15', '318', '1536219046'), ('344', '13', '304', '1536303431'), ('345', '13', '318', '1536303431'), ('364', '14', '304', '1536649267'), ('365', '14', '318', '1536649267'), ('380', '16', '304', '1536902656'), ('381', '16', '363', '1536902656'), ('424', '19', '583', '1539917767'), ('425', '20', '583', '1539918585'), ('426', '21', '600', '1539920809'), ('427', '22', '580', '1539928098'), ('437', '8', '58', '1539930026'), ('438', '8', '68', '1539930026'), ('439', '8', '69', '1539930026'), ('443', '9', '58', '1539930290'), ('444', '9', '68', '1539930290'), ('445', '9', '69', '1539930290'), ('446', '10', '58', '1539930335'), ('447', '10', '68', '1539930335'), ('448', '10', '69', '1539930335'), ('449', '7', '58', '1539930395'), ('450', '7', '68', '1539930395'), ('451', '7', '69', '1539930395'), ('482', '18', '188', '1542175364'), ('483', '18', '193', '1542175364'), ('484', '18', '194', '1542175364'), ('485', '18', '195', '1542175364'), ('486', '18', '197', '1542175364'), ('487', '18', '192', '1542175364'), ('488', '18', '220', '1542175364'), ('490', '23', '580', '1542179154'), ('565', '24', '581', '1544773906'), ('618', '12', '58', '1544897674'), ('619', '12', '68', '1544897674'), ('620', '12', '69', '1544897674'), ('621', '6', '245', '1544897748'), ('622', '6', '298', '1544897748'), ('625', '25', '58', '1544984544'), ('626', '25', '60', '1544984544'), ('630', '11', '58', '1545638923'), ('631', '11', '68', '1545638923'), ('632', '11', '69', '1545638923'); +INSERT INTO `s_goods_category_join` VALUES ('276', '5', '240', '1535006368'), ('277', '5', '272', '1535006368'), ('278', '1', '236', '1535006379'), ('279', '1', '248', '1535006379'), ('280', '2', '245', '1535006388'), ('281', '2', '296', '1535006388'), ('282', '3', '240', '1535006396'), ('283', '3', '271', '1535006396'), ('284', '4', '236', '1535006404'), ('285', '4', '247', '1535006404'), ('329', '17', '188', '1536215582'), ('330', '17', '194', '1536215582'), ('331', '17', '195', '1536215582'), ('332', '17', '197', '1536215582'), ('333', '17', '198', '1536215582'), ('336', '15', '304', '1536219046'), ('337', '15', '318', '1536219046'), ('344', '13', '304', '1536303431'), ('345', '13', '318', '1536303431'), ('364', '14', '304', '1536649267'), ('365', '14', '318', '1536649267'), ('380', '16', '304', '1536902656'), ('381', '16', '363', '1536902656'), ('424', '19', '583', '1539917767'), ('425', '20', '583', '1539918585'), ('426', '21', '600', '1539920809'), ('427', '22', '580', '1539928098'), ('437', '8', '58', '1539930026'), ('438', '8', '68', '1539930026'), ('439', '8', '69', '1539930026'), ('443', '9', '58', '1539930290'), ('444', '9', '68', '1539930290'), ('445', '9', '69', '1539930290'), ('446', '10', '58', '1539930335'), ('447', '10', '68', '1539930335'), ('448', '10', '69', '1539930335'), ('449', '7', '58', '1539930395'), ('450', '7', '68', '1539930395'), ('451', '7', '69', '1539930395'), ('482', '18', '188', '1542175364'), ('483', '18', '193', '1542175364'), ('484', '18', '194', '1542175364'), ('485', '18', '195', '1542175364'), ('486', '18', '197', '1542175364'), ('487', '18', '192', '1542175364'), ('488', '18', '220', '1542175364'), ('490', '23', '580', '1542179154'), ('565', '24', '581', '1544773906'), ('618', '12', '58', '1544897674'), ('619', '12', '68', '1544897674'), ('620', '12', '69', '1544897674'), ('621', '6', '245', '1544897748'), ('622', '6', '298', '1544897748'), ('630', '11', '58', '1545638923'), ('631', '11', '68', '1545638923'), ('632', '11', '69', '1545638923'), ('669', '25', '58', '1545708979'), ('670', '25', '69', '1545708979'), ('671', '25', '71', '1545708979'), ('672', '25', '60', '1545708979'); COMMIT; -- ---------------------------- @@ -548,13 +548,13 @@ CREATE TABLE `s_goods_content_app` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=306 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; +) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; -- ---------------------------- -- Records of `s_goods_content_app` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_content_app` VALUES ('210', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034425215421737.png', '', '0', '1535006368'), ('211', '5', '/static/upload/images/goods/compr/2018/08/13/20180813103443075475428.png', '', '1', '1535006368'), ('212', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034432924473151.png', '', '2', '1535006368'), ('213', '5', '/static/upload/images/goods/compr/2018/08/13/20180813103444429331617.png', '', '3', '1535006368'), ('214', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034440525264020.png', '', '4', '1535006368'), ('215', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034444620135094.png', '', '5', '1535006368'), ('216', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954408218542182.jpg', '', '0', '1535006379'), ('217', '1', '/static/upload/images/goods/compr/2018/08/13/20180813095441894139729.jpg', '', '1', '1535006379'), ('218', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610397737719.jpg', '', '0', '1535006388'), ('219', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846102350867215.jpg', '', '1', '1535006388'), ('220', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846106037011362.jpg', '', '2', '1535006388'), ('221', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846112268671.jpg', '', '3', '1535006388'), ('222', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846111777820834.jpg', '', '4', '1535006388'), ('223', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846114022154163.jpg', '', '5', '1535006388'), ('224', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184611879081973.jpg', '', '6', '1535006388'), ('225', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846110265890213.jpg', '', '7', '1535006388'), ('226', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846122561885811.jpg', '', '8', '1535006388'), ('227', '3', '/static/upload/images/goods/compr/2018/08/13/20180813095930236689930.jpg', '', '0', '1535006396'), ('228', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012337397922814.jpg', '', '0', '1535006404'), ('229', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012336714748134.jpg', '', '1', '1535006404'), ('234', '15', '', '【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\r\n\r\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\r\n\r\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\r\n\r\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\r\n\r\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\r\n\r\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)', '0', '1536219046'), ('236', '14', '', '【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\r\n\r\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\r\n\r\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\r\n\r\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\r\n\r\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\r\n\r\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)', '0', '1536649268'), ('297', '6', '/static/upload/images/goods/compr/2018/08/13/20180813104103299574189.jpg', '', '0', '1544897748'), ('298', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041043914129298.jpg', '', '1', '1544897748'), ('299', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041045087361018.jpg', '', '2', '1544897748'), ('303', '25', '/static/upload/images/goods/original/2018/10/19/2018101910560687330582.jpg', '第三方都是\n都是佛挡杀佛撒旦\n收到', '0', '1544984544'), ('304', '25', '/static/upload/images/goods/2018/08/13/1534127370366748.png', '33', '1', '1544984544'), ('305', '25', '/static/upload/images/goods/2018/08/13/1534125550384474.jpg', '黄金价格回家', '2', '1544984544'); +INSERT INTO `s_goods_content_app` VALUES ('210', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034425215421737.png', '', '0', '1535006368'), ('211', '5', '/static/upload/images/goods/compr/2018/08/13/20180813103443075475428.png', '', '1', '1535006368'), ('212', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034432924473151.png', '', '2', '1535006368'), ('213', '5', '/static/upload/images/goods/compr/2018/08/13/20180813103444429331617.png', '', '3', '1535006368'), ('214', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034440525264020.png', '', '4', '1535006368'), ('215', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034444620135094.png', '', '5', '1535006368'), ('216', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954408218542182.jpg', '', '0', '1535006379'), ('217', '1', '/static/upload/images/goods/compr/2018/08/13/20180813095441894139729.jpg', '', '1', '1535006379'), ('218', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610397737719.jpg', '', '0', '1535006388'), ('219', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846102350867215.jpg', '', '1', '1535006388'), ('220', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846106037011362.jpg', '', '2', '1535006388'), ('221', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846112268671.jpg', '', '3', '1535006388'), ('222', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846111777820834.jpg', '', '4', '1535006388'), ('223', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846114022154163.jpg', '', '5', '1535006388'), ('224', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184611879081973.jpg', '', '6', '1535006388'), ('225', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846110265890213.jpg', '', '7', '1535006388'), ('226', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846122561885811.jpg', '', '8', '1535006388'), ('227', '3', '/static/upload/images/goods/compr/2018/08/13/20180813095930236689930.jpg', '', '0', '1535006396'), ('228', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012337397922814.jpg', '', '0', '1535006404'), ('229', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012336714748134.jpg', '', '1', '1535006404'), ('234', '15', '', '【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\r\n\r\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\r\n\r\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\r\n\r\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\r\n\r\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\r\n\r\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)', '0', '1536219046'), ('236', '14', '', '【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\r\n\r\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\r\n\r\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\r\n\r\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\r\n\r\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\r\n\r\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)', '0', '1536649268'), ('297', '6', '/static/upload/images/goods/compr/2018/08/13/20180813104103299574189.jpg', '', '0', '1544897748'), ('298', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041043914129298.jpg', '', '1', '1544897748'), ('299', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041045087361018.jpg', '', '2', '1544897748'), ('330', '25', '/static/upload/images/goods/original/2018/10/19/2018101910560687330582.jpg', '第三方都是\n都是佛挡杀佛撒旦\n收到', '0', '1545708979'), ('331', '25', '/static/upload/images/goods/2018/08/13/1534127370366748.png', '33', '1', '1545708979'), ('332', '25', '/static/upload/images/goods/2018/08/13/1534125550384474.jpg', '黄金价格回家', '2', '1545708979'); COMMIT; -- ---------------------------- @@ -567,13 +567,13 @@ CREATE TABLE `s_goods_favor` ( `user_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户id', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=156 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏'; +) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏'; -- ---------------------------- -- Records of `s_goods_favor` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_favor` VALUES ('108', '17', '90', '1539252289'), ('111', '8', '90', '1539700091'), ('113', '9', '90', '1539747818'), ('114', '16', '90', '1539747820'), ('117', '14', '90', '1539747830'), ('118', '4', '90', '1539747835'), ('119', '10', '90', '1539747841'), ('120', '13', '90', '1539747856'), ('121', '2', '90', '1539747864'), ('122', '1', '90', '1539747869'), ('123', '3', '90', '1539747874'), ('138', '18', '90', '1539764967'), ('139', '24', '90', '1540054699'), ('144', '16', '77', '1542781930'), ('146', '18', '77', '1542784296'), ('149', '12', '77', '1542786825'), ('152', '6', '90', '1544905158'), ('154', '1', '77', '1545099141'), ('155', '12', '90', '1545281677'); +INSERT INTO `s_goods_favor` VALUES ('108', '17', '90', '1539252289'), ('111', '8', '90', '1539700091'), ('113', '9', '90', '1539747818'), ('114', '16', '90', '1539747820'), ('117', '14', '90', '1539747830'), ('118', '4', '90', '1539747835'), ('119', '10', '90', '1539747841'), ('120', '13', '90', '1539747856'), ('121', '2', '90', '1539747864'), ('122', '1', '90', '1539747869'), ('123', '3', '90', '1539747874'), ('138', '18', '90', '1539764967'), ('139', '24', '90', '1540054699'), ('144', '16', '77', '1542781930'), ('146', '18', '77', '1542784296'), ('149', '12', '77', '1542786825'), ('152', '6', '90', '1544905158'), ('154', '1', '77', '1545099141'), ('155', '12', '90', '1545281677'), ('156', '25', '90', '1545713610'); COMMIT; -- ---------------------------- @@ -591,13 +591,13 @@ CREATE TABLE `s_goods_photo` ( KEY `goods_id` (`goods_id`), KEY `is_show` (`is_show`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=818 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; +) ENGINE=InnoDB AUTO_INCREMENT=863 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; -- ---------------------------- -- Records of `s_goods_photo` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_photo` VALUES ('361', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '1', '0', '1535006368'), ('362', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034421509882000.jpg', '1', '1', '1535006368'), ('363', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034424127503975.jpg', '1', '2', '1535006368'), ('364', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '1', '0', '1535006379'), ('365', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954402501904889.jpg', '1', '1', '1535006379'), ('366', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '1', '0', '1535006388'), ('367', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610355212513.jpg', '1', '1', '1535006388'), ('368', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846108743211495.jpg', '1', '2', '1535006388'), ('369', '3', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '1', '0', '1535006396'), ('370', '3', '/static/upload/images/goods/compr/2018/08/13/201808130959304710321600.jpg', '1', '1', '1535006396'), ('371', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '1', '0', '1535006404'), ('372', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012320114888537.jpg', '1', '1', '1535006404'), ('373', '4', '/static/upload/images/goods/compr/2018/08/13/20180813101232946018084.jpg', '1', '2', '1535006404'), ('419', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '1', '0', '1536215582'), ('420', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812340216311.jpg', '1', '1', '1536215582'), ('421', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812713949414.jpg', '1', '2', '1536215582'), ('425', '15', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '1', '0', '1536219046'), ('426', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410423210133279.jpg', '1', '1', '1536219046'), ('427', '15', '/static/upload/images/goods/compr/2018/08/17/20180817141042348070558.jpg', '1', '2', '1536219046'), ('428', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410422003151216.jpg', '1', '3', '1536219046'), ('429', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410422018453831.jpg', '1', '4', '1536219046'), ('440', '13', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '1', '0', '1536303431'), ('441', '13', '/static/upload/images/goods/compr/2018/08/15/201808151836378458518908.jpg', '1', '1', '1536303431'), ('442', '13', '/static/upload/images/goods/compr/2018/08/15/201808151836376068882517.jpg', '1', '2', '1536303431'), ('464', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '1', '0', '1536649267'), ('465', '14', '/static/upload/images/goods/compr/2018/08/17/201808171405005315880928.jpg', '1', '1', '1536649267'), ('466', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140500489815834.jpg', '1', '2', '1536649267'), ('467', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140500887596776.jpg', '1', '3', '1536649267'), ('474', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '1', '0', '1536902656'), ('475', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419106887175156.jpg', '1', '1', '1536902656'), ('476', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419103934169671.jpg', '1', '2', '1536902656'), ('495', '19', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '1', '0', '1539917767'), ('496', '19', '/static/upload/images/goods/compr/2018/10/19/2018101910560687330582.jpg', '1', '1', '1539917767'), ('497', '19', '/static/upload/images/goods/compr/2018/10/19/201810191056063055027412.jpg', '1', '2', '1539917767'), ('498', '20', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '1', '0', '1539918585'), ('499', '20', '/static/upload/images/goods/compr/2018/10/19/20181019110945021939538.jpg', '1', '1', '1539918585'), ('500', '21', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '1', '0', '1539920809'), ('501', '21', '/static/upload/images/goods/compr/2018/10/19/20181019114649644495881.jpg', '1', '1', '1539920809'), ('502', '21', '/static/upload/images/goods/compr/2018/10/19/201810191146494614827960.jpg', '1', '2', '1539920809'), ('503', '22', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '1', '0', '1539928098'), ('504', '22', '/static/upload/images/goods/compr/2018/10/19/20181019134817105146748.jpg', '1', '1', '1539928098'), ('528', '8', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '1', '0', '1539930026'), ('529', '8', '/static/upload/images/goods/compr/2018/08/14/20180814153005720035882.jpg', '1', '1', '1539930026'), ('530', '8', '/static/upload/images/goods/compr/2018/08/14/2018081415300558895164.jpg', '1', '2', '1539930026'), ('535', '9', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '1', '0', '1539930290'), ('536', '9', '/static/upload/images/goods/compr/2018/08/14/20180814153349851223487.jpg', '1', '1', '1539930290'), ('537', '9', '/static/upload/images/goods/compr/2018/08/14/2018081415334954152430.jpg', '1', '2', '1539930290'), ('538', '9', '/static/upload/images/goods/compr/2018/08/14/20180814153349073742309.jpg', '1', '3', '1539930290'), ('539', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '1', '0', '1539930335'), ('540', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153739508722622.jpg', '1', '1', '1539930335'), ('541', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153739607529853.jpg', '1', '2', '1539930335'), ('542', '10', '/static/upload/images/goods/compr/2018/08/14/201808141537390003101667.jpg', '1', '3', '1539930335'), ('543', '7', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '1', '0', '1539930395'), ('544', '7', '/static/upload/images/goods/compr/2018/08/14/201808141523510967925096.jpg', '1', '1', '1539930395'), ('563', '18', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '1', '0', '1542175364'), ('564', '18', '/static/upload/images/goods/compr/2018/08/17/201808171434379402320268.jpg', '1', '1', '1542175364'), ('565', '18', '/static/upload/images/goods/compr/2018/08/17/20180817143437214879902.jpg', '1', '2', '1542175364'), ('569', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '1', '0', '1542179154'), ('570', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354344810561660.jpg', '1', '1', '1542179154'), ('571', '23', '/static/upload/images/goods/compr/2018/10/19/20181019135434780000792.jpg', '1', '2', '1542179154'), ('572', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354347122615944.jpg', '1', '3', '1542179154'), ('726', '24', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '1', '0', '1544773906'), ('727', '24', '/static/upload/images/goods/compr/2018/10/19/201810191403238416156891.jpg', '1', '1', '1544773906'), ('728', '24', '/static/upload/images/goods/compr/2018/10/19/20181019140323535284545.jpg', '1', '2', '1544773906'), ('793', '12', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '1', '0', '1544897675'), ('794', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155533503718686.jpg', '1', '1', '1544897675'), ('795', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155533336389309.jpg', '1', '2', '1544897675'), ('796', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155534418146589.jpg', '1', '3', '1544897675'), ('797', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '1', '0', '1544897748'), ('798', '6', '/static/upload/images/goods/compr/2018/08/13/20180813104103904947047.jpg', '1', '1', '1544897748'), ('799', '6', '/static/upload/images/goods/compr/2018/08/13/2018081310410314815419.jpg', '1', '2', '1544897748'), ('805', '25', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '1', '0', '1544984544'), ('806', '25', '/static/upload/images/goods/compr/2018/12/10/20181210030034046199700.jpg', '1', '1', '1544984544'), ('807', '25', '/static/upload/images/goods/2018/08/13/1534127370823136.png', '1', '2', '1544984544'), ('808', '25', '/static/upload/images/goods/2018/08/13/1534127370366748.png', '1', '3', '1544984544'), ('809', '25', '/static/upload/images/goods/2018/08/13/1534128058393102.jpg', '1', '4', '1544984544'), ('814', '11', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '1', '0', '1545638923'), ('815', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223085079651.jpg', '1', '1', '1545638923'), ('816', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223341662606.jpg', '1', '2', '1545638923'), ('817', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223095058580.jpg', '1', '3', '1545638923'); +INSERT INTO `s_goods_photo` VALUES ('361', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '1', '0', '1535006368'), ('362', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034421509882000.jpg', '1', '1', '1535006368'), ('363', '5', '/static/upload/images/goods/compr/2018/08/13/201808131034424127503975.jpg', '1', '2', '1535006368'), ('364', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '1', '0', '1535006379'), ('365', '1', '/static/upload/images/goods/compr/2018/08/13/201808130954402501904889.jpg', '1', '1', '1535006379'), ('366', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '1', '0', '1535006388'), ('367', '2', '/static/upload/images/goods/compr/2018/08/10/20180810184610355212513.jpg', '1', '1', '1535006388'), ('368', '2', '/static/upload/images/goods/compr/2018/08/10/201808101846108743211495.jpg', '1', '2', '1535006388'), ('369', '3', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '1', '0', '1535006396'), ('370', '3', '/static/upload/images/goods/compr/2018/08/13/201808130959304710321600.jpg', '1', '1', '1535006396'), ('371', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '1', '0', '1535006404'), ('372', '4', '/static/upload/images/goods/compr/2018/08/13/201808131012320114888537.jpg', '1', '1', '1535006404'), ('373', '4', '/static/upload/images/goods/compr/2018/08/13/20180813101232946018084.jpg', '1', '2', '1535006404'), ('419', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '1', '0', '1536215582'), ('420', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812340216311.jpg', '1', '1', '1536215582'), ('421', '17', '/static/upload/images/goods/compr/2018/08/17/20180817142812713949414.jpg', '1', '2', '1536215582'), ('425', '15', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '1', '0', '1536219046'), ('426', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410423210133279.jpg', '1', '1', '1536219046'), ('427', '15', '/static/upload/images/goods/compr/2018/08/17/20180817141042348070558.jpg', '1', '2', '1536219046'), ('428', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410422003151216.jpg', '1', '3', '1536219046'), ('429', '15', '/static/upload/images/goods/compr/2018/08/17/201808171410422018453831.jpg', '1', '4', '1536219046'), ('440', '13', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '1', '0', '1536303431'), ('441', '13', '/static/upload/images/goods/compr/2018/08/15/201808151836378458518908.jpg', '1', '1', '1536303431'), ('442', '13', '/static/upload/images/goods/compr/2018/08/15/201808151836376068882517.jpg', '1', '2', '1536303431'), ('464', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '1', '0', '1536649267'), ('465', '14', '/static/upload/images/goods/compr/2018/08/17/201808171405005315880928.jpg', '1', '1', '1536649267'), ('466', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140500489815834.jpg', '1', '2', '1536649267'), ('467', '14', '/static/upload/images/goods/compr/2018/08/17/20180817140500887596776.jpg', '1', '3', '1536649267'), ('474', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '1', '0', '1536902656'), ('475', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419106887175156.jpg', '1', '1', '1536902656'), ('476', '16', '/static/upload/images/goods/compr/2018/08/17/201808171419103934169671.jpg', '1', '2', '1536902656'), ('495', '19', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '1', '0', '1539917767'), ('496', '19', '/static/upload/images/goods/compr/2018/10/19/2018101910560687330582.jpg', '1', '1', '1539917767'), ('497', '19', '/static/upload/images/goods/compr/2018/10/19/201810191056063055027412.jpg', '1', '2', '1539917767'), ('498', '20', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '1', '0', '1539918585'), ('499', '20', '/static/upload/images/goods/compr/2018/10/19/20181019110945021939538.jpg', '1', '1', '1539918585'), ('500', '21', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '1', '0', '1539920809'), ('501', '21', '/static/upload/images/goods/compr/2018/10/19/20181019114649644495881.jpg', '1', '1', '1539920809'), ('502', '21', '/static/upload/images/goods/compr/2018/10/19/201810191146494614827960.jpg', '1', '2', '1539920809'), ('503', '22', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '1', '0', '1539928098'), ('504', '22', '/static/upload/images/goods/compr/2018/10/19/20181019134817105146748.jpg', '1', '1', '1539928098'), ('528', '8', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '1', '0', '1539930026'), ('529', '8', '/static/upload/images/goods/compr/2018/08/14/20180814153005720035882.jpg', '1', '1', '1539930026'), ('530', '8', '/static/upload/images/goods/compr/2018/08/14/2018081415300558895164.jpg', '1', '2', '1539930026'), ('535', '9', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '1', '0', '1539930290'), ('536', '9', '/static/upload/images/goods/compr/2018/08/14/20180814153349851223487.jpg', '1', '1', '1539930290'), ('537', '9', '/static/upload/images/goods/compr/2018/08/14/2018081415334954152430.jpg', '1', '2', '1539930290'), ('538', '9', '/static/upload/images/goods/compr/2018/08/14/20180814153349073742309.jpg', '1', '3', '1539930290'), ('539', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '1', '0', '1539930335'), ('540', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153739508722622.jpg', '1', '1', '1539930335'), ('541', '10', '/static/upload/images/goods/compr/2018/08/14/20180814153739607529853.jpg', '1', '2', '1539930335'), ('542', '10', '/static/upload/images/goods/compr/2018/08/14/201808141537390003101667.jpg', '1', '3', '1539930335'), ('543', '7', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '1', '0', '1539930395'), ('544', '7', '/static/upload/images/goods/compr/2018/08/14/201808141523510967925096.jpg', '1', '1', '1539930395'), ('563', '18', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '1', '0', '1542175364'), ('564', '18', '/static/upload/images/goods/compr/2018/08/17/201808171434379402320268.jpg', '1', '1', '1542175364'), ('565', '18', '/static/upload/images/goods/compr/2018/08/17/20180817143437214879902.jpg', '1', '2', '1542175364'), ('569', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '1', '0', '1542179154'), ('570', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354344810561660.jpg', '1', '1', '1542179154'), ('571', '23', '/static/upload/images/goods/compr/2018/10/19/20181019135434780000792.jpg', '1', '2', '1542179154'), ('572', '23', '/static/upload/images/goods/compr/2018/10/19/201810191354347122615944.jpg', '1', '3', '1542179154'), ('726', '24', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '1', '0', '1544773906'), ('727', '24', '/static/upload/images/goods/compr/2018/10/19/201810191403238416156891.jpg', '1', '1', '1544773906'), ('728', '24', '/static/upload/images/goods/compr/2018/10/19/20181019140323535284545.jpg', '1', '2', '1544773906'), ('793', '12', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '1', '0', '1544897675'), ('794', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155533503718686.jpg', '1', '1', '1544897675'), ('795', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155533336389309.jpg', '1', '2', '1544897675'), ('796', '12', '/static/upload/images/goods/compr/2018/08/14/20180814155534418146589.jpg', '1', '3', '1544897675'), ('797', '6', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '1', '0', '1544897748'), ('798', '6', '/static/upload/images/goods/compr/2018/08/13/20180813104103904947047.jpg', '1', '1', '1544897748'), ('799', '6', '/static/upload/images/goods/compr/2018/08/13/2018081310410314815419.jpg', '1', '2', '1544897748'), ('814', '11', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '1', '0', '1545638923'), ('815', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223085079651.jpg', '1', '1', '1545638923'), ('816', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223341662606.jpg', '1', '2', '1545638923'), ('817', '11', '/static/upload/images/goods/compr/2018/08/14/20180814154223095058580.jpg', '1', '3', '1545638923'), ('858', '25', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '1', '0', '1545708979'), ('859', '25', '/static/upload/images/goods/compr/2018/12/10/20181210030034046199700.jpg', '1', '1', '1545708979'), ('860', '25', '/static/upload/images/goods/2018/08/13/1534127370823136.png', '1', '2', '1545708979'), ('861', '25', '/static/upload/images/goods/2018/08/13/1534127370366748.png', '1', '3', '1545708979'), ('862', '25', '/static/upload/images/goods/2018/08/13/1534128058393102.jpg', '1', '4', '1545708979'); COMMIT; -- ---------------------------- @@ -609,19 +609,41 @@ CREATE TABLE `s_goods_spec_base` ( `goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品id', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '销售价格', `inventory` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '库存', + `weight` int(11) unsigned DEFAULT '0' COMMENT '重量(kg) ', `coding` char(80) NOT NULL DEFAULT '' COMMENT '编码', `barcode` char(80) NOT NULL DEFAULT '' COMMENT '条形码', `original_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '原价', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`), KEY `attribute_type_id` (`price`) -) ENGINE=InnoDB AUTO_INCREMENT=262 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; +) ENGINE=InnoDB AUTO_INCREMENT=314 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; -- ---------------------------- -- Records of `s_goods_spec_base` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_base` VALUES ('54', '24', '168.00', '111', '335', 'tt', '666.00', '1544773906'), ('237', '12', '10001.00', '1', '', '', '1500.00', '1544897674'), ('238', '12', '15002.00', '0', '', '', '2000.00', '1544897674'), ('239', '12', '20003.00', '33', '', '', '2600.00', '1544897674'), ('240', '12', '13004.00', '44', '', '', '30010.00', '1544897674'), ('241', '12', '13005.00', '50', '', '', '30030.00', '1544897674'), ('242', '12', '13006.00', '66', '', '', '30040.00', '1544897674'), ('243', '12', '13007.00', '77', '', '', '30050.00', '1544897674'), ('244', '12', '13008.00', '88', '', '', '30060.00', '1544897674'), ('245', '12', '13009.00', '99', '', '', '30800.00', '1544897674'), ('246', '12', '130010.00', '100', '', '', '30900.00', '1544897674'), ('247', '12', '20.00', '100', '', '', '150.00', '1544897674'), ('248', '12', '320.00', '20', '', '', '160.00', '1544897674'), ('249', '6', '208.00', '100', '', '', '238.00', '1544897748'), ('255', '25', '1.00', '0', '', '2', '111.00', '1544984544'), ('256', '25', '2.00', '22', '', '3', '222.00', '1544984544'), ('257', '25', '3.00', '33', '', '4', '333.00', '1544984544'), ('258', '25', '44.00', '0', '', '', '550.00', '1544984544'), ('259', '25', '55.00', '0', '', '', '0.00', '1544984544'), ('261', '11', '10.00', '7', '', '', '133.00', '1545638923'); +INSERT INTO `s_goods_spec_base` VALUES ('54', '24', '168.00', '111', '0', '335', 'tt', '666.00', '1544773906'), ('237', '12', '10001.00', '1', '0', '', '', '1500.00', '1544897674'), ('238', '12', '15002.00', '0', '0', '', '', '2000.00', '1544897674'), ('239', '12', '20003.00', '33', '0', '', '', '2600.00', '1544897674'), ('240', '12', '13004.00', '44', '0', '', '', '30010.00', '1544897674'), ('241', '12', '13005.00', '50', '0', '', '', '30030.00', '1544897674'), ('242', '12', '13006.00', '66', '0', '', '', '30040.00', '1544897674'), ('243', '12', '13007.00', '77', '0', '', '', '30050.00', '1544897674'), ('244', '12', '13008.00', '88', '0', '', '', '30060.00', '1544897674'), ('245', '12', '13009.00', '99', '0', '', '', '30800.00', '1544897674'), ('246', '12', '130010.00', '100', '0', '', '', '30900.00', '1544897674'), ('247', '12', '20.00', '100', '0', '', '', '150.00', '1544897674'), ('248', '12', '320.00', '20', '0', '', '', '160.00', '1544897674'), ('249', '6', '208.00', '100', '0', '', '', '238.00', '1544897748'), ('261', '11', '10.00', '7', '0', '', '', '133.00', '1545638923'), ('308', '25', '10.00', '11', '77', '', '', '111.00', '1545708979'), ('309', '25', '20.00', '22', '0', '', '', '222.00', '1545708979'), ('310', '25', '30.00', '33', '56', '', '', '335.00', '1545708979'), ('311', '25', '40.00', '44', '0', '', '', '674.00', '1545708979'), ('312', '25', '60.00', '66', '0', '', '', '442.00', '1545708979'), ('313', '25', '70.00', '77', '24', '', '', '765.00', '1545708979'); +COMMIT; + +-- ---------------------------- +-- Table structure for `s_goods_spec_images` +-- ---------------------------- +DROP TABLE IF EXISTS `s_goods_spec_images`; +CREATE TABLE `s_goods_spec_images` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', + `goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品id', + `name` char(60) NOT NULL DEFAULT '' COMMENT '规格类型名称', + `images` char(255) NOT NULL DEFAULT '' COMMENT '图片地址', + `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', + PRIMARY KEY (`id`), + KEY `goods_id` (`goods_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='商品规格图片'; + +-- ---------------------------- +-- Records of `s_goods_spec_images` +-- ---------------------------- +BEGIN; +INSERT INTO `s_goods_spec_images` VALUES ('5', '25', '黑色', '/static/upload/images/goods/2018/08/13/1534127370366748.png', '1545708979'), ('6', '25', '白色', '/static/upload/images/goods/2018/08/13/1534127088462306.png', '1545708979'); COMMIT; -- ---------------------------- @@ -636,13 +658,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`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; +) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; -- ---------------------------- -- Records of `s_goods_spec_type` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_type` VALUES ('69', '12', '{\"0\":\"\\u5957\\u9910\\u4e00\",\"5\":\"\\u5957\\u9910\\u4e8c\"}', '套餐', '1544897674'), ('70', '12', '{\"0\":\"\\u9ed1\\u8272\",\"3\":\"\\u767d\\u8272\",\"10\":\"\\u84dd\\u8272\"}', '颜色', '1544897674'), ('71', '12', '{\"0\":\"4G\",\"1\":\"16G\",\"2\":\"36G\",\"11\":\"8G\"}', '内存', '1544897674'), ('74', '25', '{\"0\":\"\\u767d\\u8272\",\"3\":\"\\u9ed1\\u8272\"}', '颜色', '1544984544'), ('75', '25', '[\"S\",\"M\",\"L\"]', '尺码', '1544984544'); +INSERT INTO `s_goods_spec_type` VALUES ('69', '12', '{\"0\":\"\\u5957\\u9910\\u4e00\",\"5\":\"\\u5957\\u9910\\u4e8c\"}', '套餐', '1544897674'), ('70', '12', '{\"0\":\"\\u9ed1\\u8272\",\"3\":\"\\u767d\\u8272\",\"10\":\"\\u84dd\\u8272\"}', '颜色', '1544897674'), ('71', '12', '{\"0\":\"4G\",\"1\":\"16G\",\"2\":\"36G\",\"11\":\"8G\"}', '内存', '1544897674'), ('92', '25', '[\"\\u9ed1\\u8272\",\"\\u767d\\u8272\"]', '颜色', '1545708979'), ('93', '25', '[\"S\",\"M\",\"L\",\"XL\"]', '尺码', '1545708979'); COMMIT; -- ---------------------------- @@ -658,13 +680,13 @@ CREATE TABLE `s_goods_spec_value` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`) USING BTREE, KEY `goods_spec_base_id` (`goods_spec_base_id`) -) ENGINE=InnoDB AUTO_INCREMENT=686 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; +) ENGINE=InnoDB AUTO_INCREMENT=820 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; -- ---------------------------- -- Records of `s_goods_spec_value` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_value` VALUES ('630', '12', '237', '套餐一', '1544897674'), ('631', '12', '237', '黑色', '1544897674'), ('632', '12', '237', '4G', '1544897674'), ('633', '12', '238', '套餐一', '1544897674'), ('634', '12', '238', '黑色', '1544897674'), ('635', '12', '238', '16G', '1544897674'), ('636', '12', '239', '套餐一', '1544897674'), ('637', '12', '239', '黑色', '1544897674'), ('638', '12', '239', '36G', '1544897674'), ('639', '12', '240', '套餐一', '1544897674'), ('640', '12', '240', '白色', '1544897674'), ('641', '12', '240', '4G', '1544897674'), ('642', '12', '241', '套餐一', '1544897674'), ('643', '12', '241', '白色', '1544897674'), ('644', '12', '241', '16G', '1544897674'), ('645', '12', '242', '套餐二', '1544897674'), ('646', '12', '242', '黑色', '1544897674'), ('647', '12', '242', '4G', '1544897674'), ('648', '12', '243', '套餐二', '1544897674'), ('649', '12', '243', '黑色', '1544897674'), ('650', '12', '243', '16G', '1544897674'), ('651', '12', '244', '套餐二', '1544897674'), ('652', '12', '244', '黑色', '1544897674'), ('653', '12', '244', '36G', '1544897674'), ('654', '12', '245', '套餐二', '1544897674'), ('655', '12', '245', '白色', '1544897674'), ('656', '12', '245', '4G', '1544897674'), ('657', '12', '246', '套餐二', '1544897674'), ('658', '12', '246', '白色', '1544897674'), ('659', '12', '246', '16G', '1544897674'), ('660', '12', '247', '套餐二', '1544897674'), ('661', '12', '247', '蓝色', '1544897674'), ('662', '12', '247', '4G', '1544897674'), ('663', '12', '248', '套餐二', '1544897674'), ('664', '12', '248', '蓝色', '1544897674'), ('665', '12', '248', '8G', '1544897674'), ('676', '25', '255', '白色', '1544984544'), ('677', '25', '255', 'S', '1544984544'), ('678', '25', '256', '白色', '1544984544'), ('679', '25', '256', 'M', '1544984544'), ('680', '25', '257', '白色', '1544984544'), ('681', '25', '257', 'L', '1544984544'), ('682', '25', '258', '黑色', '1544984544'), ('683', '25', '258', 'S', '1544984544'), ('684', '25', '259', '黑色', '1544984544'), ('685', '25', '259', 'M', '1544984544'); +INSERT INTO `s_goods_spec_value` VALUES ('630', '12', '237', '套餐一', '1544897674'), ('631', '12', '237', '黑色', '1544897674'), ('632', '12', '237', '4G', '1544897674'), ('633', '12', '238', '套餐一', '1544897674'), ('634', '12', '238', '黑色', '1544897674'), ('635', '12', '238', '16G', '1544897674'), ('636', '12', '239', '套餐一', '1544897674'), ('637', '12', '239', '黑色', '1544897674'), ('638', '12', '239', '36G', '1544897674'), ('639', '12', '240', '套餐一', '1544897674'), ('640', '12', '240', '白色', '1544897674'), ('641', '12', '240', '4G', '1544897674'), ('642', '12', '241', '套餐一', '1544897674'), ('643', '12', '241', '白色', '1544897674'), ('644', '12', '241', '16G', '1544897674'), ('645', '12', '242', '套餐二', '1544897674'), ('646', '12', '242', '黑色', '1544897674'), ('647', '12', '242', '4G', '1544897674'), ('648', '12', '243', '套餐二', '1544897674'), ('649', '12', '243', '黑色', '1544897674'), ('650', '12', '243', '16G', '1544897674'), ('651', '12', '244', '套餐二', '1544897674'), ('652', '12', '244', '黑色', '1544897674'), ('653', '12', '244', '36G', '1544897674'), ('654', '12', '245', '套餐二', '1544897674'), ('655', '12', '245', '白色', '1544897674'), ('656', '12', '245', '4G', '1544897674'), ('657', '12', '246', '套餐二', '1544897674'), ('658', '12', '246', '白色', '1544897674'), ('659', '12', '246', '16G', '1544897674'), ('660', '12', '247', '套餐二', '1544897674'), ('661', '12', '247', '蓝色', '1544897674'), ('662', '12', '247', '4G', '1544897674'), ('663', '12', '248', '套餐二', '1544897674'), ('664', '12', '248', '蓝色', '1544897674'), ('665', '12', '248', '8G', '1544897674'), ('808', '25', '308', '黑色', '1545708979'), ('809', '25', '308', 'S', '1545708979'), ('810', '25', '309', '黑色', '1545708979'), ('811', '25', '309', 'M', '1545708979'), ('812', '25', '310', '黑色', '1545708979'), ('813', '25', '310', 'L', '1545708979'), ('814', '25', '311', '黑色', '1545708979'), ('815', '25', '311', 'XL', '1545708979'), ('816', '25', '312', '白色', '1545708979'), ('817', '25', '312', 'S', '1545708979'), ('818', '25', '313', '白色', '1545708979'), ('819', '25', '313', 'L', '1545708979'); COMMIT; -- ---------------------------- @@ -1186,7 +1208,7 @@ CREATE TABLE `s_user` ( -- Records of `s_user` -- ---------------------------- BEGIN; -INSERT INTO `s_user` VALUES ('77', '2088502175420842', '', '', '0', '255773', '70da5937905ce1d1a8c6a8a4ab5c72b3', '', '龚哥哥', '13250814883', 'fuxiang.gong@qq.com', '2', 'https://tfs.alipayobjects.com/images/partner/T10d8lXm4dXXXXXXXX', '上海', '上海市', '1540915200', '', '967', '0', '0', '0', '0', '1545099005'), ('90', '2088502175420666', '', '', '0', '650140', '14a34e99dd7e6332c927abecfb153920', '', '魔鬼', '17602128368', '', '2', '/static/upload/images/user_avatar/compr/2018/10/16/20181016143756385674260.png', '', '', '666201600', '', '0', '0', '0', '0', '1539167253', '1545637522'); +INSERT INTO `s_user` VALUES ('77', '2088502175420842', '', '', '0', '255773', '70da5937905ce1d1a8c6a8a4ab5c72b3', '', '龚哥哥', '13250814883', 'fuxiang.gong@qq.com', '2', 'https://tfs.alipayobjects.com/images/partner/T10d8lXm4dXXXXXXXX', '上海', '上海市', '1540915200', '', '967', '0', '0', '0', '0', '1545099005'), ('90', '2088502175420666', '', '', '0', '070517', '56aac3bff2ce8547831bb419d02bddc4', '', '魔鬼', '17602128368', '', '2', '/static/upload/images/user_avatar/compr/2018/10/16/20181016143756385674260.png', '', '', '666201600', '', '0', '0', '0', '0', '1539167253', '1545713308'); COMMIT; -- ---------------------------- diff --git a/public/static/admin/default/images/default-images.png b/public/static/admin/default/images/default-images.png index 92a9895bb33f5fcb9f5cd30afb5a90d280fbee0f..76f08c7066576a8eddd8f484dc816a8e9995a402 100755 GIT binary patch delta 2619 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 V&Y^&-2RsNuUiicM)p`H;e*w$S2MPcH delta 3402 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'; html += '×'; - html += ''; + html += ''; html += ''; $('.title-start').before(html); // value html = ''; - html += ''; + html += ''; html += ''; $('.value-start').before(html); @@ -35,7 +35,7 @@ $(function() }); // 规格列移除 - $('.specifications-table').on('click', '.title-nav-remove', function() + $(document).on('click', '.specifications-table .title-nav-remove', function() { var index = $(this).data('index'); $('.table-title-'+index).remove(); @@ -78,7 +78,7 @@ $(function() }); // 规格行复制 - $('.specifications-table').on('click', '.line-copy', function() + $(document).on('click', '.specifications-table .line-copy', function() { var $parent = $(this).parents('tr'); $parent.find('input').each(function(k, v) @@ -92,7 +92,7 @@ $(function() }); // 规格行移除 - $('.specifications-table').on('click', '.line-remove', function() + $(document).on('click', '.specifications-table .line-remove', function() { $(this).parents('tr').remove(); @@ -114,7 +114,7 @@ $(function() }); // 规格第一列输入事件 - $('.specifications-table tbody tr').on('change', 'td:eq(0) input', function() + $(document).on('change', '.specifications-table tbody tr td.table-value input', function() { // 规格图片 SpecImagesHandle(); @@ -125,25 +125,36 @@ $(function() { if($('.spec-images-tips input').prop('checked')) { + // 清空规格 + $('ul.spec-images-list').html(''); + + // 获取第一列数据值 var temp_spec_all = {}, spec_all = []; $('.specifications-table tbody tr').each(function(k, v) { - var value = $(this).find('td:eq(0) input').val(); - temp_spec_all[value] = value; + var value = $(this).find('td.table-value:eq(0) input').val(); + if((value || null) != null) + { + temp_spec_all[value] = value; + } }); spec_all = Object.keys(temp_spec_all); + console.log(spec_all) + + // 添加规格图片 if(spec_all.length > 0) { + $('.spec-images-list').show(); for(var i in spec_all) { var temp_class = 'spec-images-items-'+spec_all[i]; if($('ul.spec-images-list').find('.'+temp_class).length <= 0) { var html = '
  • '; - html += '' - html += '
      '; + html += '' + html += '
        '; html += '
      • '; - html += ''; + html += ''; html += ''; html += '
      • '; html += '
      '; @@ -152,9 +163,12 @@ $(function() $('ul.spec-images-list').append(html); } } + } else { + $('.spec-images-list').hide(); } } else { $('ul.spec-images-list').html(''); + $('.spec-images-list').hide(); } } diff --git a/public/static/index/default/css/goods.css b/public/static/index/default/css/goods.css index cb6c12de1..6be22fef4 100755 --- a/public/static/index/default/css/goods.css +++ b/public/static/index/default/css/goods.css @@ -38,8 +38,10 @@ input{font-size:12px;font-size:100%;outline:none;line-height:normal;color:#444;} .theme-signin-left{padding-bottom:30px;max-height:250px ;overflow-y: scroll;background: #fff;} .theme-options{display: block;overflow: hidden;padding-left: 10px;padding-right:10px; margin-bottom: 5px;} .theme-signin-left .cart-title{font-size:14px ;font-weight: 600;} -.theme-signin-left .sku-line{float: left; margin:10px;margin-left:0;border-radius:3px ; background:#efefef ;padding:0px 8px; border: 1px solid #efefef;} -.theme-signin-left .sku-line.selected{background:#e23f36;color: #fff; border: 1px solid #e33d2f;} +.theme-signin-left .sku-line{float: left; margin:10px;margin-left:0;border-radius:3px ; background:#efefef ;padding:0px 8px; border: 1px solid #d5d5d5;} +.theme-signin-left .sku-line.selected{background:#d2364c;color: #fff; border: 1px solid #d2364c;} +.sku-line-images { padding:3px !important; } +.sku-line-images img { width: 30px; height: 30px; } .theme-signin .btn{width:100%;font-size: 16px;padding:5px ;} .btn-op{position:fixed;left:0;bottom: 0;width:100%; z-index: 3;} @@ -463,4 +465,7 @@ li.am-comment{ width:100%} /* 视频操作 */ .scoll .goods-video-submit-close { bottom: 50px; } + + /* 底部 */ + .am-footer { padding-bottom: 55px; } } \ No newline at end of file diff --git a/public/static/index/default/js/goods.js b/public/static/index/default/js/goods.js index a185e2e55..22190cb9e 100755 --- a/public/static/index/default/js/goods.js +++ b/public/static/index/default/js/goods.js @@ -1,7 +1,7 @@ // 规格弹窗PC显示 function poptit_pc_show() { - $(document.body).css("position", "static"); + $(document.body).css('position', 'static'); $('.theme-signin-left').scrollTop(0); $('.theme-popover-mask').hide(); $('.theme-popover').slideDown(0); @@ -11,7 +11,7 @@ function poptit_close() { if($(window).width() < 1025) { - $(document.body).css("position", "static"); + $(document.body).css('position', 'static'); $('.theme-signin-left').scrollTop(0); $('.theme-popover-mask').hide(); $('.theme-popover').slideUp(100); @@ -161,7 +161,7 @@ function GoodsSpecDetail() $.AMUI.progress.done(); if(result.code == 0) { - $('.text-info .price-now').text(result.data.price); + $('.text-info .price-now').text('¥'+result.data.price); $('.sys_item_price').text(result.data.price); $('.number-tag input[type="number"]').attr('max', result.data.inventory); $('.stock-tips .stock').text(result.data.inventory); @@ -272,18 +272,34 @@ function GoodsSpecType() }); } +/** + * 商品基础数据恢复 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2018-12-25 + * @desc description + */ +function GoodsBaseRestore() +{ + $('.text-info .price-now').text('¥'+$('.text-info .price-now').data('original-price')); + $('.sys_item_price').text($('.sys_item_price').data('original-price')); + $('.number-tag input[type="number"]').attr('max', $('.number-tag input[type="number"]').data('original-max')); + $('.stock-tips .stock').text($('.stock-tips .stock').data('original-stock')); +} + $(function() { // 商品规格选择 - $(".theme-options").each(function() + $('.theme-options').each(function() { $(this).find('ul>li').on('click', function() { var length = $('.theme-signin-left .sku-items').length; var index = $(this).parents('.sku-items').index(); - if($(this).hasClass("selected")) + if($(this).hasClass('selected')) { - $(this).removeClass("selected"); + $(this).removeClass('selected'); // 去掉元素之后的禁止 $('.theme-signin-left .sku-items').each(function(k, v) @@ -293,12 +309,16 @@ $(function() { $(this).find('li').removeClass('sku-items-disabled').removeClass('selected').addClass('sku-dont-choose'); } }); + + // 数据还原 + GoodsBaseRestore(); + } else { if($(this).hasClass('sku-items-disabled') || $(this).hasClass('sku-dont-choose')) { return false; } - $(this).addClass("selected").siblings("li").removeClass("selected"); + $(this).addClass('selected').siblings('li').removeClass('selected'); $(this).parents('.sku-items').removeClass('attr-not-active'); // 去掉元素之后的禁止 @@ -313,6 +333,22 @@ $(function() { }); } + // 是否存在规格图片 + var spec_images = $(this).data('type-images') || null; + if(spec_images != null) + { + $('.jqzoom').attr('src', spec_images); + $('.jqzoom').attr('rel', spec_images); + $('.img-info img').attr('src', spec_images); + } + + // 后面是否还有未选择的规格 + if(index < length-1) + { + // 数据还原 + GoodsBaseRestore(); + } + // 获取下一个规格类型 GoodsSpecType(); @@ -323,11 +359,11 @@ $(function() { }); // 放大镜初始化 - $(".jqzoom").imagezoom(); - $("#thumblist li a").on('mouseover', function() { - $(this).parents("li").addClass("tb-selected").siblings().removeClass("tb-selected"); - $(".jqzoom").attr('src', $(this).find("img").attr("mid")); - $(".jqzoom").attr('rel', $(this).find("img").attr("big")); + $('.jqzoom').imagezoom(); + $('#thumblist li a').on('mouseover', function() { + $(this).parents('li').addClass('tb-selected').siblings().removeClass('tb-selected'); + $('.jqzoom').attr('src', $(this).find('img').attr('mid')); + $('.jqzoom').attr('rel', $(this).find('img').attr('big')); }); //弹出规格选择 @@ -336,7 +372,7 @@ $(function() { // 是否登录 if(__user_id__ != 0) { - $(document.body).css("position", "fixed"); + $(document.body).css('position', 'fixed'); $('.theme-popover-mask').show(); $('.theme-popover').slideDown(200); @@ -453,51 +489,6 @@ $(function() { }); -// 购买导航动画显示/隐藏 -var temp_scroll = 0; -var scroll_type = -1; -var location_scroll = 0; -var nav_status = 1; -var $buy_nav= $("div.buy-nav"); -$(window).scroll(function() -{ - if($(window).width() <= 625) - { - var scroll = $(document).scrollTop(); - if(scroll != temp_scroll) - { - var temp_scroll_type = (scroll > temp_scroll) ? 1 : 0; - if(temp_scroll_type != scroll_type) - { - scroll_type = temp_scroll_type; - location_scroll = scroll; - } - - if(scroll_type == 1) - { - if(nav_status == 1 && scroll > location_scroll+200) - { - nav_status = 0; - if(!$buy_nav.is(":animated")) - { - $buy_nav.slideUp(500); - } - } - } else { - if(nav_status == 0 && scroll < location_scroll-50) - { - nav_status = 1; - if(!$buy_nav.is(":animated")) - { - $buy_nav.slideDown(500); - } - } - } - temp_scroll = scroll; - } - } -}); - // 浏览器窗口实时事件 $(window).resize(function() { @@ -512,11 +503,11 @@ $(window).resize(function() $(document).ready(function() { //获得文本框对象 - var t = $("#text_box"); + var t = $('#text_box'); //初始化数量为1,并失效减 $('#min').attr('disabled', true); //数量增加操作 - $("#add").on('click', function() { + $('#add').on('click', function() { var stock = parseInt($('.stock-tips .stock').text()); var number = parseInt(t.val()); if(number < stock) @@ -532,7 +523,7 @@ $(document).ready(function() { }); //数量减少操作 - $("#min").on('click', function() { + $('#min').on('click', function() { t.val(parseInt(t.val()) - 1); if (parseInt(t.val()) == 1) { $('#min').attr('disabled', true); -- GitLab