diff --git a/application/index/controller/Common.php b/application/index/controller/Common.php index 9eb3b7805..d2a550c61 100755 --- a/application/index/controller/Common.php +++ b/application/index/controller/Common.php @@ -80,8 +80,17 @@ class Common extends Controller */ private function CommonPluginsInit() { + // 公共header内钩子 + $this->assign('plugins_view_common_header_data', Hook::listen('plugins_view_common_header', ['hook_name'=>'plugins_view_common_header', 'is_control'=>false, 'user'=>$this->user])); + + // 公共页面部钩子 + $this->assign('plugins_view_common_page_bottom_data', Hook::listen('plugins_view_common_page_bottom', ['hook_name'=>'plugins_view_common_page_bottom', 'is_control'=>false, 'user'=>$this->user])); + // 公共顶部钩子 $this->assign('plugins_view_common_top_data', Hook::listen('plugins_view_common_top', ['hook_name'=>'plugins_view_common_top', 'is_control'=>false, 'user'=>$this->user])); + + // 公共底部钩子 + $this->assign('plugins_view_common_bottom_data', Hook::listen('plugins_view_common_bottom', ['hook_name'=>'plugins_view_common_bottom', 'is_control'=>false, 'user'=>$this->user])); } /** diff --git a/application/index/view/default/public/footer.html b/application/index/view/default/public/footer.html index 63ed082eb..53020649f 100755 --- a/application/index/view/default/public/footer.html +++ b/application/index/view/default/public/footer.html @@ -4,10 +4,19 @@ {{/if}} - -{{include file="public/go_top" /}} - - + +{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_footer) or $is_footer eq 1)}} +
+ plugins_view_common_bottom +
+{{/if}} +{{if !empty($plugins_view_common_bottom_data) and is_array($plugins_view_common_bottom_data) and (!isset($is_footer) or $is_footer eq 1)}} + {{foreach $plugins_view_common_bottom_data as $hook}} + {{if is_string($hook) or is_int($hook)}} + {{$hook|raw}} + {{/if}} + {{/foreach}} +{{/if}} @@ -44,4 +53,18 @@ {{if !empty($module_js)}} {{/if}} -{{:MyC('home_footer_info')}} \ No newline at end of file +{{:MyC('home_footer_info')}} + + +{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_footer) or $is_footer eq 1)}} +
+ plugins_view_common_page_bottom +
+{{/if}} +{{if !empty($plugins_view_common_page_bottom_data) and is_array($plugins_view_common_page_bottom_data) and (!isset($is_footer) or $is_footer eq 1)}} + {{foreach $plugins_view_common_page_bottom_data as $hook}} + {{if is_string($hook) or is_int($hook)}} + {{$hook|raw}} + {{/if}} + {{/foreach}} +{{/if}} \ No newline at end of file diff --git a/application/index/view/default/public/go_top.html b/application/index/view/default/public/go_top.html deleted file mode 100755 index 4c0628e76..000000000 --- a/application/index/view/default/public/go_top.html +++ /dev/null @@ -1,3 +0,0 @@ -
- -
\ No newline at end of file diff --git a/application/index/view/default/public/header.html b/application/index/view/default/public/header.html index 590b79108..b657315a6 100755 --- a/application/index/view/default/public/header.html +++ b/application/index/view/default/public/header.html @@ -36,8 +36,23 @@ var __attachment_host__ = '{{$attachment_host}}'; var __user_id__ = {{if empty($user['id'])}}0{{else /}}{{$user.id}}{{/if}}; + + + {{if !empty($plugins_view_common_header_data) and is_array($plugins_view_common_header_data) and (!isset($is_header) or $is_header eq 1)}} + {{foreach $plugins_view_common_header_data as $hook}} + {{if is_string($hook) or is_int($hook)}} + {{$hook|raw}} + {{/if}} + {{/foreach}} + {{/if}} + +{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_header) or $is_header eq 1)}} +
+ plugins_view_common_header +
+{{/if}} {{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_header) or $is_header eq 1)}} diff --git a/application/plugins/commongobacktop/Admin.php b/application/plugins/commongobacktop/Admin.php new file mode 100644 index 000000000..458e9aef4 --- /dev/null +++ b/application/plugins/commongobacktop/Admin.php @@ -0,0 +1,90 @@ + $ret['data'], + ]; + return DataReturn('处理成功', 0, $data); + } else { + return $ret; + } + } + + /** + * 编辑页面 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function saveinfo($params = []) + { + $ret = PluginsService::PluginsData('commongobacktop', ['images']); + if($ret['code'] == 0) + { + // 是否 + $is_whether_list = [ + 0 => array('id' => 0, 'name' => '否'), + 1 => array('id' => 1, 'name' => '是', 'checked' => true), + ]; + + // 数组组装 + $data = [ + 'is_whether_list' => $is_whether_list, + 'data' => $ret['data'], + ]; + return DataReturn('处理成功', 0, $data); + } else { + return $ret; + } + } + + /** + * 数据保存 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function save($params = []) + { + return PluginsService::PluginsDataSave(['plugins'=>'commongobacktop', 'data'=>$params]); + } +} +?> \ No newline at end of file diff --git a/application/plugins/commongobacktop/Hook.php b/application/plugins/commongobacktop/Hook.php new file mode 100644 index 000000000..bd400fcab --- /dev/null +++ b/application/plugins/commongobacktop/Hook.php @@ -0,0 +1,169 @@ +html($params); + break; + + case 'plugins_view_common_page_bottom' : + $ret = $this->js($params); + break; + + case 'plugins_view_common_header' : + $ret = $this->css($params); + break; + + default : + $ret = ''; + } + return $ret; + } else { + return ''; + } + } + } + + /** + * css + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-06T16:16:34+0800 + * @param [array] $params [输入参数] + */ + public function css($params = []) + { + return ''; + } + + /** + * js + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-06T16:16:34+0800 + * @param [array] $params [输入参数] + */ + public function js($params = []) + { + return ''; + } + + /** + * 视图 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-06T16:16:34+0800 + * @param [array] $params [输入参数] + */ + public function html($params = []) + { + // 当前模块/控制器/方法 + $module_name = strtolower(request()->module()); + $controller_name = strtolower(request()->controller()); + $action_name = strtolower(request()->action()); + + // 获取应用数据 + $ret = PluginsService::PluginsData('commongobacktop', ['images']); + + // html拼接 + $html = '
'; + $content = ''; + if($ret['code'] == 0) + { + // 图片是否为空 + if(empty($ret['data']['images'])) + { + return ''; + } + + // 非全局 + if($ret['data']['is_overall'] != 1) + { + // 非首页则空 + if($module_name.$controller_name.$action_name != 'indexindexindex') + { + return ''; + } + } + + $content = '
'; + $content .= ''; + $content .= '
'; + } else { + $content = $ret['msg']; + } + $html .= $content; + $html .= '
'; + + return $html; + } +} +?> \ No newline at end of file diff --git a/application/plugins/commongobacktop/config.json b/application/plugins/commongobacktop/config.json new file mode 100644 index 000000000..849c7c2f5 --- /dev/null +++ b/application/plugins/commongobacktop/config.json @@ -0,0 +1,30 @@ +{ + "base":{ + "plugins":"commongobacktop", + "name":"回到顶部", + "logo":"\/static\/upload\/images\/plugins_commongobacktop\/2019\/02\/15\/1550200927239565.png", + "author":"Devil", + "author_url":"https:\/\/shopxo.net\/", + "version":"1.0.0", + "desc":"当滚动到底部的时候出现回到顶部操作", + "apply_terminal":[ + "pc", + "h5" + ], + "apply_version":[ + "1.3.0" + ], + "is_home":false + }, + "hook":{ + "plugins_view_common_bottom":[ + "app\\plugins\\commongobacktop\\Hook" + ], + "plugins_view_common_page_bottom":[ + "app\\plugins\\commongobacktop\\Hook" + ], + "plugins_view_common_header":[ + "app\\plugins\\commongobacktop\\Hook" + ] + } +} \ No newline at end of file diff --git a/application/plugins/commontopmaxpicture/Hook.php b/application/plugins/commontopmaxpicture/Hook.php index 3b787fdf5..978d96d37 100755 --- a/application/plugins/commontopmaxpicture/Hook.php +++ b/application/plugins/commontopmaxpicture/Hook.php @@ -65,6 +65,12 @@ class Hook $content = ''; if($ret['code'] == 0) { + // 图片是否为空 + if(empty($ret['data']['images'])) + { + return ''; + } + // 有效时间 if(!empty($ret['data']['time_start'])) { diff --git a/application/plugins/view/commongobacktop/admin/index.html b/application/plugins/view/commongobacktop/admin/index.html new file mode 100755 index 000000000..bf1462ea9 --- /dev/null +++ b/application/plugins/view/commongobacktop/admin/index.html @@ -0,0 +1,36 @@ +{{include file="public/header" /}} + + +
+
+ + 回到顶部 + 返回 + + +
+
+ +
+ +
+
+
+ +
+ {{if isset($data['is_overall']) and $data['is_overall'] eq 1}} + 是 + {{else /}} + 否 + {{/if}} +
+
+ 编辑 +
+
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/plugins/view/commongobacktop/admin/saveinfo.html b/application/plugins/view/commongobacktop/admin/saveinfo.html new file mode 100755 index 000000000..35aa21179 --- /dev/null +++ b/application/plugins/view/commongobacktop/admin/saveinfo.html @@ -0,0 +1,46 @@ +{{include file="public/header" /}} + + +
+
+ +
+ + 回到顶部 + 返回 + + +
+ +
    +
  • + + +
  • +
+
+上传图片
+
+ +
+ +
+ {{foreach $is_whether_list as $v}} + + {{/foreach}} +
+
+ +
+ +
+
+ +
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/tags.php b/application/tags.php index 7a99c7314..030801f1d 100755 --- a/application/tags.php +++ b/application/tags.php @@ -45,5 +45,17 @@ return array ( array ( 0 => 'app\\plugins\\userloginrewardintegral\\Hook', ), + 'plugins_view_common_bottom' => + array ( + 0 => 'app\\plugins\\commongobacktop\\Hook', + ), + 'plugins_view_common_page_bottom' => + array ( + 0 => 'app\\plugins\\commongobacktop\\Hook', + ), + 'plugins_view_common_header' => + array ( + 0 => 'app\\plugins\\commongobacktop\\Hook', + ), ); ?> \ No newline at end of file diff --git a/config/shopxo.sql b/config/shopxo.sql index 9a9f9023c..f821fffc6 100644 --- a/config/shopxo.sql +++ b/config/shopxo.sql @@ -1,18 +1,20 @@ /* - Navicat MySQL Data Transfer + Navicat Premium Data Transfer Source Server : 本机 - Source Server Version : 50716 + Source Server Type : MySQL + Source Server Version : 50722 Source Host : localhost - Source Database : shopxo_ttt + Source Database : shopxo_test - Target Server Version : 50716 + Target Server Type : MySQL + Target Server Version : 50722 File Encoding : utf-8 - Date: 02/14/2019 23:33:56 PM + Date: 02/15/2019 14:05:41 PM */ -SET NAMES utf8; +SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- @@ -38,7 +40,7 @@ CREATE TABLE `s_admin` ( -- Records of `s_admin` -- ---------------------------- BEGIN; -INSERT INTO `s_admin` VALUES ('1', 'admin', 'a99ef2f5c5413dfc559c758235625c65', '672546', '17602128368', '0', '374', '1550110864', '1', '1481350313', '1543486561'), ('3', 'testtest', '7f9b7d564e1426b3e8d235a8f1300e01', '500123', '13222333333', '2', '49', '1549419854', '13', '1483947758', '1545729083'); +INSERT INTO `s_admin` VALUES ('1', 'admin', 'db56ff753ddb6c279272c0cf24fec9fa', '443489', '17602128368', '0', '375', '1550199807', '1', '1481350313', '1543486561'), ('3', 'testtest', '7f9b7d564e1426b3e8d235a8f1300e01', '500123', '13222333333', '2', '49', '1549419854', '13', '1483947758', '1545729083'); COMMIT; -- ---------------------------- @@ -346,7 +348,7 @@ CREATE TABLE `s_goods` ( -- Records of `s_goods` -- ---------------------------- BEGIN; -INSERT INTO `s_goods` VALUES ('1', '2', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '0', '125', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


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


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


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


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


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

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



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


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


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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



', '4', '0', '4', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '1547455700', '1547455700'), ('12', '9', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', 'xxxxhhhhhh商品型号', '0', '246', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '150.00-188.00', '150.00', '188.00', '118.00-128.00', '118.00', '128.00', '3', '1', '0', '1', '1', '1', '

\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '0', '7', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1548054454'); +INSERT INTO `s_goods` VALUES ('1', '2', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '0', '125', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


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


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


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


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


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

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



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


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


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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



', '4', '0', '4', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '1547455700', '1547455700'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', 'xxxxhhhhhh商品型号', '0', '246', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '150.00-188.00', '150.00', '188.00', '118.00-128.00', '118.00', '128.00', '3', '1', '0', '1', '1', '1', '

\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '0', '8', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1550200324'); COMMIT; -- ---------------------------- @@ -406,13 +408,13 @@ CREATE TABLE `s_goods_category_join` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `category_id` (`category_id`) -) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; +) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; -- ---------------------------- -- Records of `s_goods_category_join` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_category_join` VALUES ('6', '3', '68', '1547452007'), ('7', '3', '69', '1547452007'), ('8', '4', '68', '1547452553'), ('9', '4', '69', '1547452553'), ('10', '5', '68', '1547452798'), ('11', '5', '69', '1547452798'), ('14', '6', '68', '1547453157'), ('15', '6', '69', '1547453157'), ('18', '8', '195', '1547454269'), ('19', '8', '198', '1547454269'), ('21', '9', '363', '1547454828'), ('22', '10', '304', '1547455375'), ('23', '10', '318', '1547455375'), ('24', '10', '446', '1547455375'), ('25', '11', '304', '1547455700'), ('26', '11', '318', '1547455700'), ('29', '2', '68', '1547458880'), ('30', '2', '69', '1547458880'), ('37', '1', '68', '1547485917'), ('42', '7', '194', '1547540607'), ('43', '7', '196', '1547540607'), ('46', '12', '304', '1548054454'), ('47', '12', '318', '1548054454'); +INSERT INTO `s_goods_category_join` VALUES ('6', '3', '68', '1547452007'), ('7', '3', '69', '1547452007'), ('8', '4', '68', '1547452553'), ('9', '4', '69', '1547452553'), ('10', '5', '68', '1547452798'), ('11', '5', '69', '1547452798'), ('14', '6', '68', '1547453157'), ('15', '6', '69', '1547453157'), ('18', '8', '195', '1547454269'), ('19', '8', '198', '1547454269'), ('21', '9', '363', '1547454828'), ('22', '10', '304', '1547455375'), ('23', '10', '318', '1547455375'), ('24', '10', '446', '1547455375'), ('25', '11', '304', '1547455700'), ('26', '11', '318', '1547455700'), ('29', '2', '68', '1547458880'), ('30', '2', '69', '1547458880'), ('37', '1', '68', '1547485917'), ('42', '7', '194', '1547540607'), ('43', '7', '196', '1547540607'), ('52', '12', '304', '1550200324'), ('53', '12', '318', '1550200324'); COMMIT; -- ---------------------------- @@ -429,13 +431,13 @@ CREATE TABLE `s_goods_content_app` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; +) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; -- ---------------------------- -- Records of `s_goods_content_app` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_content_app` VALUES ('10', '3', '/static/upload/images/goods/2019/01/14/1547451947383902.jpg', '', '0', '1547452007'), ('11', '3', '/static/upload/images/goods/2019/01/14/1547451947686990.jpg', '', '1', '1547452007'), ('12', '3', '/static/upload/images/goods/2019/01/14/1547451947676180.jpg', '', '2', '1547452007'), ('13', '3', '/static/upload/images/goods/2019/01/14/1547451947791154.jpg', '', '3', '1547452007'), ('14', '4', '/static/upload/images/goods/2019/01/14/1547452505568604.jpg', '', '0', '1547452553'), ('15', '4', '/static/upload/images/goods/2019/01/14/1547452505349986.jpg', '', '1', '1547452553'), ('16', '4', '/static/upload/images/goods/2019/01/14/1547452505184884.jpg', '', '2', '1547452553'), ('17', '5', '/static/upload/images/goods/2019/01/14/1547452760417982.jpg', '', '0', '1547452798'), ('18', '5', '/static/upload/images/goods/2019/01/14/1547452760984656.jpg', '', '1', '1547452798'), ('19', '5', '/static/upload/images/goods/2019/01/14/1547452760659259.jpg', '', '2', '1547452798'), ('23', '6', '/static/upload/images/goods/2019/01/14/1547453042405182.jpg', 'X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)', '0', '1547453157'), ('24', '6', '/static/upload/images/goods/2019/01/14/1547453042614480.jpg', '', '1', '1547453157'), ('25', '6', '/static/upload/images/goods/2019/01/14/1547453042816509.jpg', '', '2', '1547453157'), ('29', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1547454269'), ('30', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1547454269'), ('31', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1547454269'), ('36', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1547454828'), ('37', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1547454828'), ('38', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1547454828'), ('39', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1547454828'), ('40', '10', '/static/upload/images/goods/2019/01/14/1547455266527628.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】涤棉拼接蕾丝 后中拉链 有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\n\n\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~\n\n蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~', '0', '1547455375'), ('41', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1547455375'), ('42', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\n\n\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~\n\n大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~\n\n肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~', '0', '1547455700'), ('43', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1547455700'), ('44', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1547455700'), ('45', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1547455700'), ('46', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1547458880'), ('47', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1547458880'), ('48', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1547458880'), ('61', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1547485917'), ('62', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1547485917'), ('63', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1547485917'), ('71', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1547540607'), ('72', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1547540607'), ('73', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1547540607'), ('78', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1548054454'), ('79', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1548054454'), ('80', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1548054454'), ('81', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1548054454'); +INSERT INTO `s_goods_content_app` VALUES ('10', '3', '/static/upload/images/goods/2019/01/14/1547451947383902.jpg', '', '0', '1547452007'), ('11', '3', '/static/upload/images/goods/2019/01/14/1547451947686990.jpg', '', '1', '1547452007'), ('12', '3', '/static/upload/images/goods/2019/01/14/1547451947676180.jpg', '', '2', '1547452007'), ('13', '3', '/static/upload/images/goods/2019/01/14/1547451947791154.jpg', '', '3', '1547452007'), ('14', '4', '/static/upload/images/goods/2019/01/14/1547452505568604.jpg', '', '0', '1547452553'), ('15', '4', '/static/upload/images/goods/2019/01/14/1547452505349986.jpg', '', '1', '1547452553'), ('16', '4', '/static/upload/images/goods/2019/01/14/1547452505184884.jpg', '', '2', '1547452553'), ('17', '5', '/static/upload/images/goods/2019/01/14/1547452760417982.jpg', '', '0', '1547452798'), ('18', '5', '/static/upload/images/goods/2019/01/14/1547452760984656.jpg', '', '1', '1547452798'), ('19', '5', '/static/upload/images/goods/2019/01/14/1547452760659259.jpg', '', '2', '1547452798'), ('23', '6', '/static/upload/images/goods/2019/01/14/1547453042405182.jpg', 'X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)', '0', '1547453157'), ('24', '6', '/static/upload/images/goods/2019/01/14/1547453042614480.jpg', '', '1', '1547453157'), ('25', '6', '/static/upload/images/goods/2019/01/14/1547453042816509.jpg', '', '2', '1547453157'), ('29', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1547454269'), ('30', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1547454269'), ('31', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1547454269'), ('36', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1547454828'), ('37', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1547454828'), ('38', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1547454828'), ('39', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1547454828'), ('40', '10', '/static/upload/images/goods/2019/01/14/1547455266527628.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】涤棉拼接蕾丝 后中拉链 有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦\n\n\nXS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~\n\n蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~', '0', '1547455375'), ('41', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1547455375'), ('42', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '【品牌】欧单 学媛风 猫咪良品\n\n【吊牌】xueyuanfeng 猫咪良品\n\n【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)\n\n好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~\n\n【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦\n\n【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦\n\n\nXS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM\n\nS码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM\n\nM码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM\n\nL码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM\n\n\n(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)\n\n\nPS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~\n\n大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~\n\n肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~', '0', '1547455700'), ('43', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1547455700'), ('44', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1547455700'), ('45', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1547455700'), ('46', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1547458880'), ('47', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1547458880'), ('48', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1547458880'), ('61', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1547485917'), ('62', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1547485917'), ('63', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1547485917'), ('71', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1547540607'), ('72', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1547540607'), ('73', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1547540607'), ('90', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1550200324'), ('91', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1550200324'), ('92', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1550200324'), ('93', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1550200324'); COMMIT; -- ---------------------------- @@ -465,13 +467,13 @@ CREATE TABLE `s_goods_photo` ( KEY `goods_id` (`goods_id`), KEY `is_show` (`is_show`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; +) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; -- ---------------------------- -- Records of `s_goods_photo` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_photo` VALUES ('7', '3', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '1', '0', '1547452007'), ('8', '3', '/static/upload/images/goods/2019/01/14/1547451936230948.jpg', '1', '1', '1547452007'), ('9', '4', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '1', '0', '1547452553'), ('10', '4', '/static/upload/images/goods/2019/01/14/1547452496713777.jpg', '1', '1', '1547452553'), ('11', '5', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '1', '0', '1547452798'), ('12', '5', '/static/upload/images/goods/2019/01/14/1547452752648264.jpg', '1', '1', '1547452798'), ('15', '6', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '1', '0', '1547453157'), ('16', '6', '/static/upload/images/goods/2019/01/14/1547453032949003.jpg', '1', '1', '1547453157'), ('19', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1547454269'), ('20', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1547454269'), ('24', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1547454828'), ('25', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1547454828'), ('26', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1547454828'), ('27', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1547455375'), ('28', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1547455375'), ('29', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1547455700'), ('30', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1547455700'), ('31', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1547455700'), ('32', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1547455700'), ('35', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1547458880'), ('36', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1547458880'), ('48', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1547485917'), ('49', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1547485917'), ('55', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1547540607'), ('56', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1547540607'), ('60', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1548054454'), ('61', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1548054454'), ('62', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1548054454'); +INSERT INTO `s_goods_photo` VALUES ('7', '3', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '1', '0', '1547452007'), ('8', '3', '/static/upload/images/goods/2019/01/14/1547451936230948.jpg', '1', '1', '1547452007'), ('9', '4', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '1', '0', '1547452553'), ('10', '4', '/static/upload/images/goods/2019/01/14/1547452496713777.jpg', '1', '1', '1547452553'), ('11', '5', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '1', '0', '1547452798'), ('12', '5', '/static/upload/images/goods/2019/01/14/1547452752648264.jpg', '1', '1', '1547452798'), ('15', '6', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '1', '0', '1547453157'), ('16', '6', '/static/upload/images/goods/2019/01/14/1547453032949003.jpg', '1', '1', '1547453157'), ('19', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1547454269'), ('20', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1547454269'), ('24', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1547454828'), ('25', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1547454828'), ('26', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1547454828'), ('27', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1547455375'), ('28', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1547455375'), ('29', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1547455700'), ('30', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1547455700'), ('31', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1547455700'), ('32', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1547455700'), ('35', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1547458880'), ('36', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1547458880'), ('48', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1547485917'), ('49', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1547485917'), ('55', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1547540607'), ('56', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1547540607'), ('69', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1550200324'), ('70', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1550200324'), ('71', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1550200324'); COMMIT; -- ---------------------------- @@ -490,13 +492,13 @@ CREATE TABLE `s_goods_spec_base` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`), KEY `attribute_type_id` (`price`) -) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; +) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; -- ---------------------------- -- Records of `s_goods_spec_base` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '235', '0', '', '', '6866.00', '1547452007'), ('22', '4', '1999.00', '537', '0', '', '', '2300.00', '1547452553'), ('23', '5', '2499.00', '436', '0', '', '', '3200.00', '1547452798'), ('25', '6', '2998.90', '321', '0', '', '', '3200.00', '1547453157'), ('27', '8', '356.00', '35', '0', '', '', '672.00', '1547454269'), ('37', '9', '120.00', '12', '0', '', '', '160.00', '1547454828'), ('38', '9', '120.00', '87', '0', '', '', '160.00', '1547454828'), ('39', '9', '120.00', '13', '0', '', '', '160.00', '1547454828'), ('40', '9', '120.00', '76', '0', '', '', '160.00', '1547454828'), ('41', '9', '136.00', '43', '0', '', '', '188.00', '1547454828'), ('42', '9', '136.00', '56', '0', '', '', '188.00', '1547454828'), ('43', '9', '136.00', '23', '0', '', '', '188.00', '1547454828'), ('44', '9', '158.00', '243', '0', '', '', '216.00', '1547454828'), ('45', '9', '158.00', '45', '0', '', '', '216.00', '1547454828'), ('46', '10', '228.00', '36', '0', '', '', '568.00', '1547455375'), ('47', '11', '258.00', '367', '0', '', '', '268.00', '1547455700'), ('53', '2', '6050.00', '100', '0', '', '', '6800.00', '1547458880'), ('54', '2', '6600.00', '200', '0', '', '', '7200.00', '1547458880'), ('55', '2', '6800.00', '300', '0', '', '', '7600.00', '1547458880'), ('56', '2', '6050.00', '300', '0', '', '', '6800.00', '1547458880'), ('57', '2', '6600.00', '300', '0', '', '', '7200.00', '1547458880'), ('58', '2', '6800.00', '300', '0', '', '', '7600.00', '1547458880'), ('59', '2', '4500.00', '100', '0', '', '', '6800.00', '1547458880'), ('60', '2', '4800.00', '50', '0', '', '', '6600.00', '1547458880'), ('61', '2', '5500.00', '61', '0', '', '', '6000.00', '1547458880'), ('71', '1', '2100.00', '125', '0', '', '', '3200.00', '1547485917'), ('78', '7', '168.00', '320', '0', '', '', '760.00', '1547540607'), ('84', '12', '128.00', '12', '0', 'gg11', 'txm11', '188.00', '1548054454'), ('85', '12', '128.00', '65', '0', 'gg22', 'txm22', '188.00', '1548054454'), ('86', '12', '128.00', '42', '0', 'gg33', 'txm33', '188.00', '1548054454'), ('87', '12', '118.00', '46', '0', 'gg44', 'txm44', '150.00', '1548054454'), ('88', '12', '118.00', '81', '0', 'gg55', 'txm55', '150.00', '1548054454'); +INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '235', '0', '', '', '6866.00', '1547452007'), ('22', '4', '1999.00', '537', '0', '', '', '2300.00', '1547452553'), ('23', '5', '2499.00', '436', '0', '', '', '3200.00', '1547452798'), ('25', '6', '2998.90', '321', '0', '', '', '3200.00', '1547453157'), ('27', '8', '356.00', '35', '0', '', '', '672.00', '1547454269'), ('37', '9', '120.00', '12', '0', '', '', '160.00', '1547454828'), ('38', '9', '120.00', '87', '0', '', '', '160.00', '1547454828'), ('39', '9', '120.00', '13', '0', '', '', '160.00', '1547454828'), ('40', '9', '120.00', '76', '0', '', '', '160.00', '1547454828'), ('41', '9', '136.00', '43', '0', '', '', '188.00', '1547454828'), ('42', '9', '136.00', '56', '0', '', '', '188.00', '1547454828'), ('43', '9', '136.00', '23', '0', '', '', '188.00', '1547454828'), ('44', '9', '158.00', '243', '0', '', '', '216.00', '1547454828'), ('45', '9', '158.00', '45', '0', '', '', '216.00', '1547454828'), ('46', '10', '228.00', '36', '0', '', '', '568.00', '1547455375'), ('47', '11', '258.00', '367', '0', '', '', '268.00', '1547455700'), ('53', '2', '6050.00', '100', '0', '', '', '6800.00', '1547458880'), ('54', '2', '6600.00', '200', '0', '', '', '7200.00', '1547458880'), ('55', '2', '6800.00', '300', '0', '', '', '7600.00', '1547458880'), ('56', '2', '6050.00', '300', '0', '', '', '6800.00', '1547458880'), ('57', '2', '6600.00', '300', '0', '', '', '7200.00', '1547458880'), ('58', '2', '6800.00', '300', '0', '', '', '7600.00', '1547458880'), ('59', '2', '4500.00', '100', '0', '', '', '6800.00', '1547458880'), ('60', '2', '4800.00', '50', '0', '', '', '6600.00', '1547458880'), ('61', '2', '5500.00', '61', '0', '', '', '6000.00', '1547458880'), ('71', '1', '2100.00', '125', '0', '', '', '3200.00', '1547485917'), ('78', '7', '168.00', '320', '0', '', '', '760.00', '1547540607'), ('99', '12', '128.00', '12', '0', 'gg11', 'txm11', '188.00', '1550200324'), ('100', '12', '128.00', '65', '0', 'gg22', 'txm22', '188.00', '1550200324'), ('101', '12', '128.00', '42', '0', 'gg33', 'txm33', '188.00', '1550200324'), ('102', '12', '118.00', '46', '0', 'gg44', 'txm44', '150.00', '1550200324'), ('103', '12', '118.00', '81', '0', 'gg55', 'txm55', '150.00', '1550200324'); COMMIT; -- ---------------------------- @@ -511,13 +513,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=24 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; +) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; -- ---------------------------- -- Records of `s_goods_spec_type` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_type` VALUES ('9', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1547454828'), ('10', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1547454828'), ('13', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1547458880'), ('14', '2', '[{\"name\":\"\\u91d1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451274847894.jpg\"},{\"name\":\"\\u94f6\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451576558478.jpg\"}]', '颜色', '1547458880'), ('15', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1547458880'), ('22', '12', '[{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"}]', '颜色', '1548054454'), ('23', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1548054454'); +INSERT INTO `s_goods_spec_type` VALUES ('9', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1547454828'), ('10', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1547454828'), ('13', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1547458880'), ('14', '2', '[{\"name\":\"\\u91d1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451274847894.jpg\"},{\"name\":\"\\u94f6\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547451576558478.jpg\"}]', '颜色', '1547458880'), ('15', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1547458880'), ('28', '12', '[{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"}]', '颜色', '1550200324'), ('29', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1550200324'); COMMIT; -- ---------------------------- @@ -533,13 +535,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=171 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; +) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; -- ---------------------------- -- Records of `s_goods_spec_value` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_spec_value` VALUES ('76', '9', '37', '白色', '1547454828'), ('77', '9', '37', 'S', '1547454828'), ('78', '9', '38', '白色', '1547454828'), ('79', '9', '38', 'M', '1547454828'), ('80', '9', '39', '白色', '1547454828'), ('81', '9', '39', 'L', '1547454828'), ('82', '9', '40', '白色', '1547454828'), ('83', '9', '40', 'XL', '1547454828'), ('84', '9', '41', '粉色', '1547454828'), ('85', '9', '41', 'S', '1547454828'), ('86', '9', '42', '粉色', '1547454828'), ('87', '9', '42', 'M', '1547454828'), ('88', '9', '43', '粉色', '1547454828'), ('89', '9', '43', 'L', '1547454828'), ('90', '9', '44', '黑色', '1547454828'), ('91', '9', '44', 'S', '1547454828'), ('92', '9', '45', '黑色', '1547454828'), ('93', '9', '45', 'XL', '1547454828'), ('104', '2', '53', '套餐一', '1547458880'), ('105', '2', '53', '金色', '1547458880'), ('106', '2', '53', '32G', '1547458880'), ('107', '2', '54', '套餐一', '1547458880'), ('108', '2', '54', '金色', '1547458880'), ('109', '2', '54', '64G', '1547458880'), ('110', '2', '55', '套餐一', '1547458880'), ('111', '2', '55', '金色', '1547458880'), ('112', '2', '55', '128G', '1547458880'), ('113', '2', '56', '套餐一', '1547458880'), ('114', '2', '56', '银色', '1547458880'), ('115', '2', '56', '32G', '1547458880'), ('116', '2', '57', '套餐一', '1547458880'), ('117', '2', '57', '银色', '1547458880'), ('118', '2', '57', '64G', '1547458880'), ('119', '2', '58', '套餐一', '1547458880'), ('120', '2', '58', '银色', '1547458880'), ('121', '2', '58', '128G', '1547458880'), ('122', '2', '59', '套餐二', '1547458880'), ('123', '2', '59', '金色', '1547458880'), ('124', '2', '59', '32G', '1547458880'), ('125', '2', '60', '套餐二', '1547458880'), ('126', '2', '60', '金色', '1547458880'), ('127', '2', '60', '128G', '1547458880'), ('128', '2', '61', '套餐二', '1547458880'), ('129', '2', '61', '银色', '1547458880'), ('130', '2', '61', '64G', '1547458880'), ('161', '12', '84', '粉色', '1548054454'), ('162', '12', '84', 'M', '1548054454'), ('163', '12', '85', '粉色', '1548054454'), ('164', '12', '85', 'L', '1548054454'), ('165', '12', '86', '粉色', '1548054454'), ('166', '12', '86', 'XL', '1548054454'), ('167', '12', '87', '白色', '1548054454'), ('168', '12', '87', 'M', '1548054454'), ('169', '12', '88', '白色', '1548054454'), ('170', '12', '88', 'L', '1548054454'); +INSERT INTO `s_goods_spec_value` VALUES ('76', '9', '37', '白色', '1547454828'), ('77', '9', '37', 'S', '1547454828'), ('78', '9', '38', '白色', '1547454828'), ('79', '9', '38', 'M', '1547454828'), ('80', '9', '39', '白色', '1547454828'), ('81', '9', '39', 'L', '1547454828'), ('82', '9', '40', '白色', '1547454828'), ('83', '9', '40', 'XL', '1547454828'), ('84', '9', '41', '粉色', '1547454828'), ('85', '9', '41', 'S', '1547454828'), ('86', '9', '42', '粉色', '1547454828'), ('87', '9', '42', 'M', '1547454828'), ('88', '9', '43', '粉色', '1547454828'), ('89', '9', '43', 'L', '1547454828'), ('90', '9', '44', '黑色', '1547454828'), ('91', '9', '44', 'S', '1547454828'), ('92', '9', '45', '黑色', '1547454828'), ('93', '9', '45', 'XL', '1547454828'), ('104', '2', '53', '套餐一', '1547458880'), ('105', '2', '53', '金色', '1547458880'), ('106', '2', '53', '32G', '1547458880'), ('107', '2', '54', '套餐一', '1547458880'), ('108', '2', '54', '金色', '1547458880'), ('109', '2', '54', '64G', '1547458880'), ('110', '2', '55', '套餐一', '1547458880'), ('111', '2', '55', '金色', '1547458880'), ('112', '2', '55', '128G', '1547458880'), ('113', '2', '56', '套餐一', '1547458880'), ('114', '2', '56', '银色', '1547458880'), ('115', '2', '56', '32G', '1547458880'), ('116', '2', '57', '套餐一', '1547458880'), ('117', '2', '57', '银色', '1547458880'), ('118', '2', '57', '64G', '1547458880'), ('119', '2', '58', '套餐一', '1547458880'), ('120', '2', '58', '银色', '1547458880'), ('121', '2', '58', '128G', '1547458880'), ('122', '2', '59', '套餐二', '1547458880'), ('123', '2', '59', '金色', '1547458880'), ('124', '2', '59', '32G', '1547458880'), ('125', '2', '60', '套餐二', '1547458880'), ('126', '2', '60', '金色', '1547458880'), ('127', '2', '60', '128G', '1547458880'), ('128', '2', '61', '套餐二', '1547458880'), ('129', '2', '61', '银色', '1547458880'), ('130', '2', '61', '64G', '1547458880'), ('191', '12', '99', '粉色', '1550200324'), ('192', '12', '99', 'M', '1550200324'), ('193', '12', '100', '粉色', '1550200324'), ('194', '12', '100', 'L', '1550200324'), ('195', '12', '101', '粉色', '1550200324'), ('196', '12', '101', 'XL', '1550200324'), ('197', '12', '102', '白色', '1550200324'), ('198', '12', '102', 'M', '1550200324'), ('199', '12', '103', '白色', '1550200324'), ('200', '12', '103', 'L', '1550200324'); COMMIT; -- ---------------------------- @@ -816,13 +818,13 @@ CREATE TABLE `s_plugins` ( PRIMARY KEY (`id`), UNIQUE KEY `plugins` (`plugins`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; -- ---------------------------- -- Records of `s_plugins` -- ---------------------------- BEGIN; -INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"http:\\/\\/tp5-dev.com\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157744'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157742'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157741'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1550158380'); +INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"http:\\/\\/tp5-dev.com\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157744'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157742'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '0', '1550157741'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1550158380'), ('15', 'commongobacktop', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commongobacktop\\/2019\\/02\\/15\\/1550210425433304.png\",\"is_overall\":\"1\",\"pluginsname\":\"commongobacktop\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550200998', '1550210584'); COMMIT; -- ---------------------------- diff --git a/public/static/index/default/css/common.css b/public/static/index/default/css/common.css index 5f3ae412d..c21b530cc 100755 --- a/public/static/index/default/css/common.css +++ b/public/static/index/default/css/common.css @@ -743,16 +743,6 @@ button { outline: none !important; } .common-cropper-popup .preview-sm { width:50px; height:50px; } } - -/** - * 回到顶部 - */ -#my-go-top { - position: fixed; - right: 50px; - bottom: 100px; -} - /** * 插件标记 */ diff --git a/public/static/index/default/js/common.js b/public/static/index/default/js/common.js index af5debeac..aeb97053b 100755 --- a/public/static/index/default/js/common.js +++ b/public/static/index/default/js/common.js @@ -2,17 +2,6 @@ console.log("%c\u5b89\u5168\u8b66\u544a\uff01","font-size:50px;color:red;-webkit console.log("%c\u6b64\u6d4f\u89c8\u5668\u529f\u80fd\u4e13\u4f9b\u5f00\u53d1\u8005\u4f7f\u7528\u3002\u8bf7\u4e0d\u8981\u5728\u6b64\u7c98\u8d34\u6267\u884c\u4efb\u4f55\u5185\u5bb9\uff0c\u8fd9\u53ef\u80fd\u4f1a\u5bfc\u81f4\u60a8\u7684\u8d26\u6237\u53d7\u5230\u653b\u51fb\uff0c\u7ed9\u60a8\u5e26\u6765\u635f\u5931 \uff01","font-size: 20px;color:#333"); console.log("\u6280\u672f\u652f\u6301\uff1a\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0073\u0068\u006f\u0070\u0078\u006f\u002e\u006e\u0065\u0074\u002f"); -// 回顶部监测 -$(window).scroll(function() -{ - if($(window).scrollTop() > 100) - { - $("#my-go-top").fadeIn(1000); - } else { - $("#my-go-top").fadeOut(1000); - } -}); - var store = $.AMUI.store; if(!store.enabled) { diff --git a/public/static/plugins/css/commongobacktop/admin.css b/public/static/plugins/css/commongobacktop/admin.css new file mode 100755 index 000000000..818044136 --- /dev/null +++ b/public/static/plugins/css/commongobacktop/admin.css @@ -0,0 +1,20 @@ +/** + * 首页 + */ +.commongobacktop-content .items { + margin: 10px 0 20px 0; + border-bottom: 1px dashed #f1f1f1; + padding-bottom: 20px; +} +.commongobacktop-content .items .immages-tag { + border: 1px solid #eee; + text-align: center; + max-width: 100px; + padding: 5px; +} +.commongobacktop-content .items .immages-tag img { + max-width: 100%; +} +.commongobacktop-content .edit-submit { + margin-bottom: 20px; +} \ No newline at end of file diff --git a/public/static/plugins/images/commongobacktop/default-images.png b/public/static/plugins/images/commongobacktop/default-images.png new file mode 100755 index 000000000..76f08c706 Binary files /dev/null and b/public/static/plugins/images/commongobacktop/default-images.png differ diff --git a/public/static/plugins/images/commongobacktop/index.html b/public/static/plugins/images/commongobacktop/index.html new file mode 100755 index 000000000..0519ecba6 --- /dev/null +++ b/public/static/plugins/images/commongobacktop/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550200927239565.png b/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550200927239565.png new file mode 100644 index 000000000..6ca6a2998 Binary files /dev/null and b/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550200927239565.png differ diff --git a/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550210425433304.png b/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550210425433304.png new file mode 100644 index 000000000..2a12a3958 Binary files /dev/null and b/public/static/upload/images/plugins_commongobacktop/2019/02/15/1550210425433304.png differ