diff --git a/application/admin/view/default/goods/save_info.html b/application/admin/view/default/goods/save_info.html index 64984e0a59cac1bfade3b88766e6973e2500a0f3..dc462d6faf7a1794307dde2f512784e135a1e345 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 6813703a8d9dd1e7d1c9f09b5781a29c6e260a6e..807f48b7e6199abab319b9b79b7f2d7f199f6aa4 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 b69cd54c5b6c512a22f073fc62734ea96357d898..1e22b3ee3b9f1ce501b4dc5f585d7f2224f7001b 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 453185e3543623469b9e6873cbccb424cd47c06b..ffddf151ebdf72bf39c71c5f212a1cf48387c749 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 02cc91ec654051391bef14bbb9e9033270e54136..147298ef2b3cbc51dd1f43024876a6b8178ae887 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 9521fd25f1f270a9cd12238ee75e9c47b966cd1b..74da6b7dd7681d0512633f2befc12c197628bce4 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 b15755d43694944ae73f31a491aedbc91ba57429..4faeed7612f81f9571540cb94a5877ef543d38a0 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 Binary files a/public/static/admin/default/images/default-images.png and b/public/static/admin/default/images/default-images.png differ diff --git a/public/static/admin/default/js/goods.js b/public/static/admin/default/js/goods.js index 12e4980613f6501270ef7e3a3cc61af56450fb07..f79dfba12e497cef7bac621cc559febda565d69b 100755 --- a/public/static/admin/default/js/goods.js +++ b/public/static/admin/default/js/goods.js @@ -20,13 +20,13 @@ $(function() var index = parseInt(Math.random()*1000001); html = ''; 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 += '