diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php
index f290f1c0c..0847e5845 100755
--- a/application/admin/controller/User.php
+++ b/application/admin/controller/User.php
@@ -10,6 +10,7 @@
// +----------------------------------------------------------------------
namespace app\admin\controller;
+use think\facade\Hook;
use app\service\IntegralService;
use app\service\UserService;
@@ -91,7 +92,6 @@ class User extends Common
$this->assign('page_html', $page->GetPageHtml());
$this->assign('data_list', $data['data']);
return $this->fetch();
-
}
/**
@@ -150,14 +150,23 @@ class User extends Common
$data = $ret['data'][0];
}
- $this->assign('data', $data);
+
+ // 用户编辑页面钩子
+ $this->assign('plugins_view_admin_user_save_data', Hook::listen('plugins_view_admin_user_save',
+ [
+ 'hook_name' => 'plugins_view_admin_user_save',
+ 'is_backend' => false,
+ 'user_id' => $params['id'],
+ 'data' => &$data,
+ 'params' => &$params,
+ ]));
// 性别
$this->assign('common_gender_list', lang('common_gender_list'));
- // 参数
+ // 数据
+ $this->assign('data', $data);
$this->assign('params', $params);
-
return $this->fetch();
}
diff --git a/application/admin/view/default/user/save_info.html b/application/admin/view/default/user/save_info.html
index e6eb031fe..6da7e7258 100755
--- a/application/admin/view/default/user/save_info.html
+++ b/application/admin/view/default/user/save_info.html
@@ -67,6 +67,26 @@
+
+ {{if isset($shopxo_is_develop) and $shopxo_is_develop eq true}}
+
diff --git a/application/service/GoodsService.php b/application/service/GoodsService.php
index 6b03dea9c..d1ff5c5ec 100755
--- a/application/service/GoodsService.php
+++ b/application/service/GoodsService.php
@@ -2245,42 +2245,6 @@ class GoodsService
'data' => &$data,
]);
- // 测试配置信息
- $plugins = [
- 'name' => '会员等级插件',
- 'desc' => '按照会员等级设定不同金额',
- 'element' =>[
- [
- 'element' => 'input',
- 'type' => 'text',
- 'name' => 'price',
- 'placeholder' => '普通会员售价',
- 'title' => '普通会员售价',
- 'is_required' => 0,
- 'message' => '请填写应用ID',
- 'desc' => '请输入会员金额',
- ],
- [
- 'element' => 'input',
- 'type' => 'text',
- 'name' => 'price2',
- 'placeholder' => '高级会员售价',
- 'title' => '高级会员售价',
- 'is_required' => 0,
- 'message' => '请填写应用公钥',
- ],
- [
- 'element' => 'input',
- 'type' => 'text',
- 'name' => 'price3',
- 'placeholder' => '至尊会员售价',
- 'title' => '至尊会员售价',
- 'is_required' => 0,
- 'message' => '请填写应用公钥',
- ],
- ],
- ];
- $data[] = $plugins;
return DataReturn('获取成功', 0, $data);
}
}
diff --git a/application/service/UserService.php b/application/service/UserService.php
index 90ebefdab..9cd8de590 100755
--- a/application/service/UserService.php
+++ b/application/service/UserService.php
@@ -299,6 +299,20 @@ class UserService
'upd_time' => time(),
];
+ // 用户编辑处理钩子
+ $hook_name = 'plugins_service_user_save_handle';
+ $ret = Hook::listen($hook_name, [
+ 'hook_name' => $hook_name,
+ 'is_backend' => true,
+ 'params' => &$params,
+ 'data' => &$data,
+ 'user_id' => isset($params['id']) ? intval($params['id']) : 0,
+ ]);
+ if(isset($ret['code']) && $ret['code'] != 0)
+ {
+ return $ret;
+ }
+
// 密码
if(!empty($params['pwd']))
{
diff --git a/application/tags.php b/application/tags.php
index 55f27f8f4..c3497f366 100755
--- a/application/tags.php
+++ b/application/tags.php
@@ -34,31 +34,35 @@ return array (
),
'plugins_css' =>
array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
- ),
- 'plugins_js' =>
- array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
- ),
- 'plugins_service_navigation_header_handle' =>
- array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
),
'plugins_service_goods_handle_end' =>
array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
),
'plugins_service_goods_spec_base' =>
array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
),
- 'plugins_view_goods_detail_base_top' =>
+ 'plugins_service_buy_handle' =>
array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
),
- 'plugins_view_home_floor_top' =>
+ 'plugins_service_user_login_success_record' =>
array (
- 0 => 'app\\plugins\\limitedtimediscount\\Hook',
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
+ ),
+ 'plugins_service_goods_spec_extends_handle' =>
+ array (
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
+ ),
+ 'plugins_view_admin_user_save' =>
+ array (
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
+ ),
+ 'plugins_service_user_save_handle' =>
+ array (
+ 0 => 'app\\plugins\\membershiplevel\\Hook',
),
);
?>
\ No newline at end of file
diff --git a/config/shopxo.sql b/config/shopxo.sql
index e41edcde8..40187355b 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: 07/22/2019 00:35:02 AM
+ Date: 07/23/2019 21:50:40 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', 'abca4d3e08577a4d3e0fe735fcb7b8ce', '403457', '17688888888', '0', '425', '1563087975', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039');
+INSERT INTO `s_admin` VALUES ('1', 'admin', '8dbb3491c6c33c65c338145e7debfff4', '585404', '17688888888', '0', '427', '1563878036', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039');
COMMIT;
-- ----------------------------
@@ -426,7 +428,7 @@ CREATE TABLE `s_goods` (
-- Records of `s_goods`
-- ----------------------------
BEGIN;
-INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '', '0', '119', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '



', '2', '5', '79', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '', '', '', '0', '1547450921', '1554556830'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1689', '步', '/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', '12', '837', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '', '', '', '0', '1547451624', '1554555460'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '232', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '




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



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



', '2', '7', '363', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '316', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '
X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)



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



', '2', '3', '215', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '33', '件', '/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', '81', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '', '', '', '0', '1547454269', '1554485486'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '592', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '




', '3', '2', '212', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '', '', '', '0', '1547454786', '1554555420'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '28', '件', '/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', '292', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '', '', '', '0', '1547455375', '1557027030'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665977', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '0.00-268.00', '0.00', '268.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '
【品牌】欧单 学媛风 猫咪良品
【吊牌】xueyuanfeng 猫咪良品
【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)
好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~
【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦
【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦
XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM
S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM
M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM
L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM
(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)
PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~
大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~
肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~




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




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



', '2', '5', '79', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '', '', '', '0', '1547450921', '1554556830'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1689', '步', '/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', '12', '837', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '', '', '', '0', '1547451624', '1554555460'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '232', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '




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



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



', '2', '7', '363', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '316', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '
X5L/SL/V/M (5.0寸) X5max钢化膜(5.5寸) X5pro钢化膜(5.2寸)



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



', '2', '3', '215', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '33', '件', '/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', '81', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '', '', '', '0', '1547454269', '1554485486'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '592', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '




', '3', '2', '212', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '', '', '', '0', '1547454786', '1554555420'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '28', '件', '/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', '292', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '', '', '', '0', '1547455375', '1557027030'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665977', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '0.00-268.00', '0.00', '268.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '
【品牌】欧单 学媛风 猫咪良品
【吊牌】xueyuanfeng 猫咪良品
【面料质地】网纱绣花钉珠拼接蕾丝 有拉链有内衬(非专业机构鉴定,介意请慎拍)
好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~
【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦
【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦
XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM
S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM
M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM
L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM
(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)
PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~
大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~
肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~




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




', '3', '2', '681', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', 'ZK爆款连衣裙', '连衣裙,裙子', '夏季连衣裙,瘦身裙子', '0', '1547456230', '1563889407');
COMMIT;
-- ----------------------------
@@ -446,7 +448,7 @@ CREATE TABLE `s_goods_browse` (
-- Records of `s_goods_browse`
-- ----------------------------
BEGIN;
-INSERT INTO `s_goods_browse` VALUES ('1', '7', '91', '1554803230', '1554805470'), ('2', '11', '90', '1554966398', '1561012465'), ('3', '10', '90', '1555048568', '1561014840'), ('4', '9', '90', '1555058265', '1561014323'), ('5', '2', '90', '1555157678', '1561645331'), ('6', '12', '90', '1555159096', '1561014803'), ('7', '5', '90', '1555402359', '1560394014'), ('8', '7', '90', '1555406985', '1561014223'), ('9', '4', '90', '1555491079', '1559198612'), ('10', '6', '90', '1555494278', '1559319014'), ('11', '8', '91', '1556075952', '1556075952'), ('12', '3', '90', '1556077528', '1561013141'), ('13', '8', '90', '1557209457', '1560158341'), ('14', '4', '92', '1557818775', '1557818778'), ('15', '7', '92', '1557826700', '1557892156'), ('16', '2', '92', '1557828258', '1557888725'), ('17', '11', '92', '1557884597', '1557886554'), ('18', '5', '92', '1557887694', '1557887694'), ('19', '6', '93', '1558080598', '1558080598'), ('20', '7', '93', '1558081594', '1558081594'), ('21', '4', '96', '1558601285', '1558601622'), ('22', '7', '96', '1558601655', '1558601710'), ('23', '2', '96', '1558601713', '1558601713'), ('24', '1', '90', '1558605496', '1561014216'), ('25', '12', '100', '1559097704', '1559101858'), ('26', '12', '101', '1559098388', '1559098388'), ('27', '7', '101', '1559103682', '1559103682'), ('28', '6', '103', '1560133529', '1560133529'), ('29', '7', '103', '1560133773', '1560133773'), ('30', '9', '104', '1560133855', '1560133855'), ('31', '8', '103', '1560144272', '1560144272'), ('32', '9', '103', '1560144337', '1560144337'), ('33', '10', '103', '1560144477', '1560144477'), ('34', '4', '104', '1560144752', '1560144752'), ('35', '6', '105', '1560145131', '1560145131'), ('36', '1', '106', '1560145639', '1560145639'), ('37', '4', '106', '1560145646', '1560145650'), ('38', '1', '103', '1560151728', '1560151728'), ('39', '2', '102', '1560155418', '1560155418'), ('40', '3', '107', '1561691928', '1561691928'), ('41', '7', '108', '1561692018', '1561914109'), ('42', '5', '108', '1561692020', '1561692020'), ('43', '5', '7', '1561716547', '1561717072'), ('44', '7', '7', '1561717167', '1561717167'), ('45', '5', '9', '1561719877', '1561728191'), ('46', '8', '9', '1561719948', '1561720025'), ('47', '8', '11', '1561721040', '1561721055'), ('48', '4', '11', '1561721049', '1561721049'), ('49', '7', '11', '1561722347', '1561722347'), ('50', '7', '9', '1561728133', '1561728133'), ('51', '2', '15', '1561742436', '1561742436'), ('52', '1', '15', '1561769768', '1561769768'), ('53', '5', '18', '1561778334', '1561778341'), ('54', '2', '18', '1561778350', '1561778376'), ('55', '5', '21', '1561792475', '1563290485'), ('56', '7', '21', '1561793510', '1561793515'), ('57', '8', '21', '1561793518', '1561793518'), ('58', '1', '21', '1561822465', '1561854805'), ('59', '2', '21', '1561822819', '1563363392'), ('60', '9', '21', '1561823129', '1561823248'), ('61', '11', '21', '1561824593', '1563363850'), ('62', '12', '21', '1561905520', '1563364735'), ('63', '12', '25', '1563289708', '1563289708'), ('64', '4', '21', '1563290392', '1563290392');
+INSERT INTO `s_goods_browse` VALUES ('1', '7', '91', '1554803230', '1554805470'), ('2', '11', '90', '1554966398', '1561012465'), ('3', '10', '90', '1555048568', '1561014840'), ('4', '9', '90', '1555058265', '1561014323'), ('5', '2', '90', '1555157678', '1561645331'), ('6', '12', '90', '1555159096', '1561014803'), ('7', '5', '90', '1555402359', '1560394014'), ('8', '7', '90', '1555406985', '1561014223'), ('9', '4', '90', '1555491079', '1559198612'), ('10', '6', '90', '1555494278', '1559319014'), ('11', '8', '91', '1556075952', '1556075952'), ('12', '3', '90', '1556077528', '1561013141'), ('13', '8', '90', '1557209457', '1560158341'), ('14', '4', '92', '1557818775', '1557818778'), ('15', '7', '92', '1557826700', '1557892156'), ('16', '2', '92', '1557828258', '1557888725'), ('17', '11', '92', '1557884597', '1557886554'), ('18', '5', '92', '1557887694', '1557887694'), ('19', '6', '93', '1558080598', '1558080598'), ('20', '7', '93', '1558081594', '1558081594'), ('21', '4', '96', '1558601285', '1558601622'), ('22', '7', '96', '1558601655', '1558601710'), ('23', '2', '96', '1558601713', '1558601713'), ('24', '1', '90', '1558605496', '1561014216'), ('25', '12', '100', '1559097704', '1559101858'), ('26', '12', '101', '1559098388', '1559098388'), ('27', '7', '101', '1559103682', '1559103682'), ('28', '6', '103', '1560133529', '1560133529'), ('29', '7', '103', '1560133773', '1560133773'), ('30', '9', '104', '1560133855', '1560133855'), ('31', '8', '103', '1560144272', '1560144272'), ('32', '9', '103', '1560144337', '1560144337'), ('33', '10', '103', '1560144477', '1560144477'), ('34', '4', '104', '1560144752', '1560144752'), ('35', '6', '105', '1560145131', '1560145131'), ('36', '1', '106', '1560145639', '1560145639'), ('37', '4', '106', '1560145646', '1560145650'), ('38', '1', '103', '1560151728', '1560151728'), ('39', '2', '102', '1560155418', '1560155418'), ('40', '3', '107', '1561691928', '1561691928'), ('41', '7', '108', '1561692018', '1561914109'), ('42', '5', '108', '1561692020', '1561692020'), ('43', '5', '7', '1561716547', '1561717072'), ('44', '7', '7', '1561717167', '1561717167'), ('45', '5', '9', '1561719877', '1561728191'), ('46', '8', '9', '1561719948', '1561720025'), ('47', '8', '11', '1561721040', '1561721055'), ('48', '4', '11', '1561721049', '1561721049'), ('49', '7', '11', '1561722347', '1561722347'), ('50', '7', '9', '1561728133', '1561728133'), ('51', '2', '15', '1561742436', '1561742436'), ('52', '1', '15', '1561769768', '1561769768'), ('53', '5', '18', '1561778334', '1561778341'), ('54', '2', '18', '1561778350', '1561778376'), ('55', '5', '21', '1561792475', '1563290485'), ('56', '7', '21', '1561793510', '1561793515'), ('57', '8', '21', '1561793518', '1561793518'), ('58', '1', '21', '1561822465', '1561854805'), ('59', '2', '21', '1561822819', '1563363392'), ('60', '9', '21', '1561823129', '1561823248'), ('61', '11', '21', '1561824593', '1563363850'), ('62', '12', '21', '1561905520', '1563889716'), ('63', '12', '25', '1563289708', '1563289708'), ('64', '4', '21', '1563290392', '1563290392');
COMMIT;
-- ----------------------------
@@ -496,13 +498,13 @@ CREATE TABLE `s_goods_category_join` (
PRIMARY KEY (`id`),
KEY `goods_id` (`goods_id`),
KEY `category_id` (`category_id`)
-) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联';
+) ENGINE=InnoDB AUTO_INCREMENT=142 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'), ('76', '8', '58', '1554485486'), ('77', '8', '195', '1554485486'), ('78', '8', '198', '1554485486'), ('79', '7', '58', '1554485498'), ('80', '7', '194', '1554485498'), ('81', '7', '196', '1554485498'), ('89', '9', '363', '1554555420'), ('90', '2', '68', '1554555460'), ('91', '2', '69', '1554555460'), ('92', '2', '304', '1554555460'), ('93', '1', '68', '1554556830'), ('94', '1', '304', '1554556830'), ('111', '10', '304', '1557027030'), ('112', '10', '318', '1557027030'), ('113', '10', '446', '1557027030'), ('116', '11', '304', '1558596805'), ('117', '11', '318', '1558596805'), ('130', '12', '304', '1561652576'), ('131', '12', '318', '1561652576');
+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'), ('76', '8', '58', '1554485486'), ('77', '8', '195', '1554485486'), ('78', '8', '198', '1554485486'), ('79', '7', '58', '1554485498'), ('80', '7', '194', '1554485498'), ('81', '7', '196', '1554485498'), ('89', '9', '363', '1554555420'), ('90', '2', '68', '1554555460'), ('91', '2', '69', '1554555460'), ('92', '2', '304', '1554555460'), ('93', '1', '68', '1554556830'), ('94', '1', '304', '1554556830'), ('111', '10', '304', '1557027030'), ('112', '10', '318', '1557027030'), ('113', '10', '446', '1557027030'), ('116', '11', '304', '1558596805'), ('117', '11', '318', '1558596805'), ('140', '12', '304', '1563889407'), ('141', '12', '318', '1563889407');
COMMIT;
-- ----------------------------
@@ -552,13 +554,13 @@ CREATE TABLE `s_goods_content_app` (
PRIMARY KEY (`id`),
KEY `goods_id` (`goods_id`),
KEY `sort` (`sort`)
-) ENGINE=InnoDB AUTO_INCREMENT=228 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情';
+) ENGINE=InnoDB AUTO_INCREMENT=248 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'), ('132', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1554485486'), ('133', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1554485486'), ('134', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1554485486'), ('135', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1554485498'), ('136', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1554485498'), ('137', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1554485498'), ('148', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1554555420'), ('149', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1554555420'), ('150', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1554555420'), ('151', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1554555420'), ('152', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1554555460'), ('153', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1554555460'), ('154', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1554555460'), ('155', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1554556830'), ('156', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1554556830'), ('157', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1554556830'), ('190', '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', '1557027030'), ('191', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1557027030'), ('196', '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', '1558596805'), ('197', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1558596805'), ('198', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1558596805'), ('199', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1558596805'), ('224', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1561652576'), ('225', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1561652576'), ('226', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1561652576'), ('227', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1561652576');
+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'), ('132', '8', '/static/upload/images/goods/2019/01/14/1547454192301566.jpg', '', '0', '1554485486'), ('133', '8', '/static/upload/images/goods/2019/01/14/1547454192448116.jpg', '', '1', '1554485486'), ('134', '8', '/static/upload/images/goods/2019/01/14/1547454192474638.jpg', '', '2', '1554485486'), ('135', '7', '/static/upload/images/goods/2019/01/14/1547453910353340.jpg', '', '0', '1554485498'), ('136', '7', '/static/upload/images/goods/2019/01/14/1547453910505349.jpg', '', '1', '1554485498'), ('137', '7', '/static/upload/images/goods/2019/01/14/1547453910394886.jpg', '', '2', '1554485498'), ('148', '9', '/static/upload/images/goods/2019/01/14/1547454712270511.jpg', '', '0', '1554555420'), ('149', '9', '/static/upload/images/goods/2019/01/14/1547454713556301.jpg', '', '1', '1554555420'), ('150', '9', '/static/upload/images/goods/2019/01/14/1547454713800333.jpg', '', '2', '1554555420'), ('151', '9', '/static/upload/images/goods/2019/01/14/1547454713456602.jpg', '', '3', '1554555420'), ('152', '2', '/static/upload/images/goods/2019/01/14/1547451595700972.jpg', '', '0', '1554555460'), ('153', '2', '/static/upload/images/goods/2019/01/14/1547451595528800.jpg', '', '1', '1554555460'), ('154', '2', '/static/upload/images/goods/2019/01/14/1547451595616298.jpg', '', '2', '1554555460'), ('155', '1', '/static/upload/images/goods/2019/01/14/1547450880620837.png', '', '0', '1554556830'), ('156', '1', '/static/upload/images/goods/2019/01/14/1547450880750687.png', '', '1', '1554556830'), ('157', '1', '/static/upload/images/goods/2019/01/14/1547450880917418.png', '', '2', '1554556830'), ('190', '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', '1557027030'), ('191', '10', '/static/upload/images/goods/2019/01/14/1547455266234658.jpg', '', '1', '1557027030'), ('196', '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', '1558596805'), ('197', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '', '1', '1558596805'), ('198', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '', '2', '1558596805'), ('199', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '', '3', '1558596805'), ('244', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1563889407'), ('245', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1563889407'), ('246', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1563889407'), ('247', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1563889407');
COMMIT;
-- ----------------------------
@@ -595,13 +597,13 @@ CREATE TABLE `s_goods_photo` (
KEY `goods_id` (`goods_id`),
KEY `is_show` (`is_show`),
KEY `sort` (`sort`)
-) ENGINE=InnoDB AUTO_INCREMENT=179 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片';
+) ENGINE=InnoDB AUTO_INCREMENT=194 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'), ('103', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1554485486'), ('104', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1554485486'), ('105', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1554485498'), ('106', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1554485498'), ('116', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1554555420'), ('117', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1554555420'), ('118', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1554555420'), ('119', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1554555460'), ('120', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1554555460'), ('121', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1554556830'), ('122', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1554556830'), ('148', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1557027030'), ('149', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1557027030'), ('154', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1558596805'), ('155', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1558596805'), ('156', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1558596805'), ('157', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1558596805'), ('176', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1561652576'), ('177', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1561652576'), ('178', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1561652576');
+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'), ('103', '8', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '1', '0', '1554485486'), ('104', '8', '/static/upload/images/goods/2019/01/14/1547454172213779.jpg', '1', '1', '1554485486'), ('105', '7', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '1', '0', '1554485498'), ('106', '7', '/static/upload/images/goods/2019/01/14/1547453895864876.jpg', '1', '1', '1554485498'), ('116', '9', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '1', '0', '1554555420'), ('117', '9', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '1', '1', '1554555420'), ('118', '9', '/static/upload/images/goods/2019/01/14/1547454702814719.jpg', '1', '2', '1554555420'), ('119', '2', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '1', '0', '1554555460'), ('120', '2', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '1', '1', '1554555460'), ('121', '1', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '1', '0', '1554556830'), ('122', '1', '/static/upload/images/goods/2019/01/14/1547450818141662.jpg', '1', '1', '1554556830'), ('148', '10', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '1', '0', '1557027030'), ('149', '10', '/static/upload/images/goods/2019/01/14/1547455240700820.jpg', '1', '1', '1557027030'), ('154', '11', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '1', '0', '1558596805'), ('155', '11', '/static/upload/images/goods/2019/01/14/1547455601168384.jpg', '1', '1', '1558596805'), ('156', '11', '/static/upload/images/goods/2019/01/14/1547455601898622.jpg', '1', '2', '1558596805'), ('157', '11', '/static/upload/images/goods/2019/01/14/1547455601528614.jpg', '1', '3', '1558596805'), ('191', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1563889407'), ('192', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1563889407'), ('193', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1563889407');
COMMIT;
-- ----------------------------
@@ -621,13 +623,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=262 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础';
+) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础';
-- ----------------------------
-- Records of `s_goods_spec_base`
-- ----------------------------
BEGIN;
-INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '232', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '528', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '426', '0.00', '', '', '3200.00', null, '1547452798'), ('25', '6', '2998.90', '316', '0.00', '', '', '3200.00', null, '1547453157'), ('154', '8', '356.00', '33', '0.00', '', '', '672.00', null, '1554485486'), ('155', '7', '168.00', '313', '0.00', '', '', '760.00', null, '1554485498'), ('163', '9', '120.00', '12', '0.30', '', '', '160.00', null, '1554555420'), ('164', '9', '120.00', '86', '0.30', '', '', '160.00', null, '1554555420'), ('165', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1554555420'), ('166', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1554555420'), ('167', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1554555420'), ('168', '9', '136.00', '53', '0.30', '', '', '188.00', null, '1554555420'), ('169', '9', '136.00', '21', '0.30', '', '', '188.00', null, '1554555420'), ('170', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1554555420'), ('171', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1554555420'), ('172', '2', '6050.00', '99', '0.00', '', '', '6800.00', null, '1554555460'), ('173', '2', '6600.00', '198', '0.00', '', '', '7200.00', null, '1554555460'), ('174', '2', '6800.00', '299', '0.00', '', '', '7600.00', null, '1554555460'), ('175', '2', '6050.00', '300', '0.00', '', '', '6800.00', null, '1554555460'), ('176', '2', '6600.00', '299', '0.00', '', '', '7200.00', null, '1554555460'), ('177', '2', '6800.00', '300', '0.00', '', '', '7600.00', null, '1554555460'), ('178', '2', '4500.00', '93', '0.00', '', '', '6800.00', null, '1554555460'), ('179', '2', '4800.00', '49', '0.00', '', '', '6600.00', null, '1554555460'), ('180', '2', '5500.00', '52', '0.00', '', '', '6000.00', null, '1554555460'), ('181', '1', '2100.00', '119', '0.00', '', '', '3200.00', null, '1554556830'), ('220', '10', '228.00', '28', '0.00', '', '', '568.00', null, '1557027030'), ('224', '11', '258.00', '36665655', '0.00', '', '', '268.00', null, '1558596805'), ('225', '11', '238.00', '322', '0.00', '', '', '0.00', null, '1558596805'), ('226', '11', '160.00', '0', '0.00', '', '', '0.00', null, '1558596805'), ('257', '12', '0.01', '4', '0.50', 'gg11', 'txm11', '188.00', null, '1561652576'), ('258', '12', '128.00', '61', '0.10', 'gg22', 'txm22', '188.00', null, '1561652576'), ('259', '12', '128.00', '41', '1.90', 'gg33', 'txm33', '188.00', null, '1561652576'), ('260', '12', '118.00', '0', '457.60', 'gg44', 'txm44', '150.00', null, '1561652576'), ('261', '12', '118.00', '0', '37.00', 'gg55', 'txm55', '150.00', null, '1561652576');
+INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '232', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '528', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '426', '0.00', '', '', '3200.00', null, '1547452798'), ('25', '6', '2998.90', '316', '0.00', '', '', '3200.00', null, '1547453157'), ('154', '8', '356.00', '33', '0.00', '', '', '672.00', null, '1554485486'), ('155', '7', '168.00', '313', '0.00', '', '', '760.00', null, '1554485498'), ('163', '9', '120.00', '12', '0.30', '', '', '160.00', null, '1554555420'), ('164', '9', '120.00', '86', '0.30', '', '', '160.00', null, '1554555420'), ('165', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1554555420'), ('166', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1554555420'), ('167', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1554555420'), ('168', '9', '136.00', '53', '0.30', '', '', '188.00', null, '1554555420'), ('169', '9', '136.00', '21', '0.30', '', '', '188.00', null, '1554555420'), ('170', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1554555420'), ('171', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1554555420'), ('172', '2', '6050.00', '99', '0.00', '', '', '6800.00', null, '1554555460'), ('173', '2', '6600.00', '198', '0.00', '', '', '7200.00', null, '1554555460'), ('174', '2', '6800.00', '299', '0.00', '', '', '7600.00', null, '1554555460'), ('175', '2', '6050.00', '300', '0.00', '', '', '6800.00', null, '1554555460'), ('176', '2', '6600.00', '299', '0.00', '', '', '7200.00', null, '1554555460'), ('177', '2', '6800.00', '300', '0.00', '', '', '7600.00', null, '1554555460'), ('178', '2', '4500.00', '93', '0.00', '', '', '6800.00', null, '1554555460'), ('179', '2', '4800.00', '49', '0.00', '', '', '6600.00', null, '1554555460'), ('180', '2', '5500.00', '52', '0.00', '', '', '6000.00', null, '1554555460'), ('181', '1', '2100.00', '119', '0.00', '', '', '3200.00', null, '1554556830'), ('220', '10', '228.00', '28', '0.00', '', '', '568.00', null, '1557027030'), ('224', '11', '258.00', '36665655', '0.00', '', '', '268.00', null, '1558596805'), ('225', '11', '238.00', '322', '0.00', '', '', '0.00', null, '1558596805'), ('226', '11', '160.00', '0', '0.00', '', '', '0.00', null, '1558596805'), ('282', '12', '0.01', '4', '0.50', 'gg11', 'txm11', '188.00', '{\"plugins_membershiplevel_price_20190723184533398308\":\"\",\"specifications-tag\":\"\"}', '1563889407'), ('283', '12', '128.00', '61', '0.10', 'gg22', 'txm22', '188.00', '{\"plugins_membershiplevel_price_20190723184533398308\":\"60\",\"specifications-tag\":\"\"}', '1563889407'), ('284', '12', '128.00', '41', '1.90', 'gg33', 'txm33', '188.00', '{\"plugins_membershiplevel_price_20190723184533398308\":\"50\",\"specifications-tag\":\"\"}', '1563889407'), ('285', '12', '118.00', '78', '457.60', 'gg44', 'txm44', '150.00', '{\"plugins_membershiplevel_price_20190723184533398308\":\"36\",\"specifications-tag\":\"\"}', '1563889407'), ('286', '12', '118.00', '98', '37.00', 'gg55', 'txm55', '150.00', '{\"plugins_membershiplevel_price_20190723184533398308\":\"28\",\"specifications-tag\":\"\"}', '1563889407');
COMMIT;
-- ----------------------------
@@ -642,13 +644,13 @@ CREATE TABLE `s_goods_spec_type` (
`add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`),
KEY `goods_id` (`goods_id`)
-) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型';
+) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型';
-- ----------------------------
-- Records of `s_goods_spec_type`
-- ----------------------------
BEGIN;
-INSERT INTO `s_goods_spec_type` VALUES ('46', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1554555420'), ('47', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1554555420'), ('48', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1554555460'), ('49', '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\"}]', '颜色', '1554555460'), ('50', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1554555460'), ('67', '11', '[{\"name\":\"M\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"},{\"name\":\"L\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"XL\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455601528614.jpg\"}]', '尺码', '1558596805'), ('80', '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\"}]', '颜色', '1561652576'), ('81', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1561652576');
+INSERT INTO `s_goods_spec_type` VALUES ('46', '9', '[{\"name\":\"\\u767d\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702543219.jpg\"},{\"name\":\"\\u7c89\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702272215.jpg\"},{\"name\":\"\\u9ed1\\u8272\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547454702814719.jpg\"}]', '颜色', '1554555420'), ('47', '9', '[{\"name\":\"S\",\"images\":\"\"},{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1554555420'), ('48', '2', '[{\"name\":\"\\u5957\\u9910\\u4e00\",\"images\":\"\"},{\"name\":\"\\u5957\\u9910\\u4e8c\",\"images\":\"\"}]', '套餐', '1554555460'), ('49', '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\"}]', '颜色', '1554555460'), ('50', '2', '[{\"name\":\"32G\",\"images\":\"\"},{\"name\":\"64G\",\"images\":\"\"},{\"name\":\"128G\",\"images\":\"\"}]', '容量', '1554555460'), ('67', '11', '[{\"name\":\"M\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907486857.jpg\"},{\"name\":\"L\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455907256518.jpg\"},{\"name\":\"XL\",\"images\":\"\\/static\\/upload\\/images\\/goods\\/2019\\/01\\/14\\/1547455601528614.jpg\"}]', '尺码', '1558596805'), ('90', '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\"}]', '颜色', '1563889407'), ('91', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1563889407');
COMMIT;
-- ----------------------------
@@ -664,13 +666,13 @@ CREATE TABLE `s_goods_spec_value` (
PRIMARY KEY (`id`),
KEY `goods_id` (`goods_id`),
KEY `goods_spec_base_id` (`goods_spec_base_id`)
-) ENGINE=InnoDB AUTO_INCREMENT=499 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值';
+) ENGINE=InnoDB AUTO_INCREMENT=549 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值';
-- ----------------------------
-- Records of `s_goods_spec_value`
-- ----------------------------
BEGIN;
-INSERT INTO `s_goods_spec_value` VALUES ('305', '9', '163', '白色', '1554555420'), ('306', '9', '163', 'S', '1554555420'), ('307', '9', '164', '白色', '1554555420'), ('308', '9', '164', 'M', '1554555420'), ('309', '9', '165', '白色', '1554555420'), ('310', '9', '165', 'L', '1554555420'), ('311', '9', '166', '白色', '1554555420'), ('312', '9', '166', 'XL', '1554555420'), ('313', '9', '167', '粉色', '1554555420'), ('314', '9', '167', 'S', '1554555420'), ('315', '9', '168', '粉色', '1554555420'), ('316', '9', '168', 'M', '1554555420'), ('317', '9', '169', '粉色', '1554555420'), ('318', '9', '169', 'L', '1554555420'), ('319', '9', '170', '黑色', '1554555420'), ('320', '9', '170', 'S', '1554555420'), ('321', '9', '171', '黑色', '1554555420'), ('322', '9', '171', 'XL', '1554555420'), ('323', '2', '172', '套餐一', '1554555460'), ('324', '2', '172', '金色', '1554555460'), ('325', '2', '172', '32G', '1554555460'), ('326', '2', '173', '套餐一', '1554555460'), ('327', '2', '173', '金色', '1554555460'), ('328', '2', '173', '64G', '1554555460'), ('329', '2', '174', '套餐一', '1554555460'), ('330', '2', '174', '金色', '1554555460'), ('331', '2', '174', '128G', '1554555460'), ('332', '2', '175', '套餐一', '1554555460'), ('333', '2', '175', '银色', '1554555460'), ('334', '2', '175', '32G', '1554555460'), ('335', '2', '176', '套餐一', '1554555460'), ('336', '2', '176', '银色', '1554555460'), ('337', '2', '176', '64G', '1554555460'), ('338', '2', '177', '套餐一', '1554555460'), ('339', '2', '177', '银色', '1554555460'), ('340', '2', '177', '128G', '1554555460'), ('341', '2', '178', '套餐二', '1554555460'), ('342', '2', '178', '金色', '1554555460'), ('343', '2', '178', '32G', '1554555460'), ('344', '2', '179', '套餐二', '1554555460'), ('345', '2', '179', '金色', '1554555460'), ('346', '2', '179', '128G', '1554555460'), ('347', '2', '180', '套餐二', '1554555460'), ('348', '2', '180', '银色', '1554555460'), ('349', '2', '180', '64G', '1554555460'), ('426', '11', '224', 'M', '1558596805'), ('427', '11', '225', 'L', '1558596805'), ('428', '11', '226', 'XL', '1558596805'), ('489', '12', '257', '粉色', '1561652576'), ('490', '12', '257', 'M', '1561652576'), ('491', '12', '258', '粉色', '1561652576'), ('492', '12', '258', 'L', '1561652576'), ('493', '12', '259', '粉色', '1561652576'), ('494', '12', '259', 'XL', '1561652576'), ('495', '12', '260', '白色', '1561652576'), ('496', '12', '260', 'M', '1561652576'), ('497', '12', '261', '白色', '1561652576'), ('498', '12', '261', 'L', '1561652576');
+INSERT INTO `s_goods_spec_value` VALUES ('305', '9', '163', '白色', '1554555420'), ('306', '9', '163', 'S', '1554555420'), ('307', '9', '164', '白色', '1554555420'), ('308', '9', '164', 'M', '1554555420'), ('309', '9', '165', '白色', '1554555420'), ('310', '9', '165', 'L', '1554555420'), ('311', '9', '166', '白色', '1554555420'), ('312', '9', '166', 'XL', '1554555420'), ('313', '9', '167', '粉色', '1554555420'), ('314', '9', '167', 'S', '1554555420'), ('315', '9', '168', '粉色', '1554555420'), ('316', '9', '168', 'M', '1554555420'), ('317', '9', '169', '粉色', '1554555420'), ('318', '9', '169', 'L', '1554555420'), ('319', '9', '170', '黑色', '1554555420'), ('320', '9', '170', 'S', '1554555420'), ('321', '9', '171', '黑色', '1554555420'), ('322', '9', '171', 'XL', '1554555420'), ('323', '2', '172', '套餐一', '1554555460'), ('324', '2', '172', '金色', '1554555460'), ('325', '2', '172', '32G', '1554555460'), ('326', '2', '173', '套餐一', '1554555460'), ('327', '2', '173', '金色', '1554555460'), ('328', '2', '173', '64G', '1554555460'), ('329', '2', '174', '套餐一', '1554555460'), ('330', '2', '174', '金色', '1554555460'), ('331', '2', '174', '128G', '1554555460'), ('332', '2', '175', '套餐一', '1554555460'), ('333', '2', '175', '银色', '1554555460'), ('334', '2', '175', '32G', '1554555460'), ('335', '2', '176', '套餐一', '1554555460'), ('336', '2', '176', '银色', '1554555460'), ('337', '2', '176', '64G', '1554555460'), ('338', '2', '177', '套餐一', '1554555460'), ('339', '2', '177', '银色', '1554555460'), ('340', '2', '177', '128G', '1554555460'), ('341', '2', '178', '套餐二', '1554555460'), ('342', '2', '178', '金色', '1554555460'), ('343', '2', '178', '32G', '1554555460'), ('344', '2', '179', '套餐二', '1554555460'), ('345', '2', '179', '金色', '1554555460'), ('346', '2', '179', '128G', '1554555460'), ('347', '2', '180', '套餐二', '1554555460'), ('348', '2', '180', '银色', '1554555460'), ('349', '2', '180', '64G', '1554555460'), ('426', '11', '224', 'M', '1558596805'), ('427', '11', '225', 'L', '1558596805'), ('428', '11', '226', 'XL', '1558596805'), ('539', '12', '282', '粉色', '1563889407'), ('540', '12', '282', 'M', '1563889407'), ('541', '12', '283', '粉色', '1563889407'), ('542', '12', '283', 'L', '1563889407'), ('543', '12', '284', '粉色', '1563889407'), ('544', '12', '284', 'XL', '1563889407'), ('545', '12', '285', '白色', '1563889407'), ('546', '12', '285', 'M', '1563889407'), ('547', '12', '286', '白色', '1563889407'), ('548', '12', '286', 'L', '1563889407');
COMMIT;
-- ----------------------------
@@ -1029,13 +1031,13 @@ CREATE TABLE `s_plugins` (
PRIMARY KEY (`id`),
UNIQUE KEY `plugins` (`plugins`),
KEY `is_enable` (`is_enable`)
-) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用';
+) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用';
-- ----------------------------
-- Records of `s_plugins`
-- ----------------------------
BEGIN;
-INSERT INTO `s_plugins` VALUES ('18', 'distribution', '{\"level_list\":{\"20190628170225619905\":{\"name\":\"www\",\"rules_min\":\"0\",\"rules_max\":\"100\",\"images_url\":\"\",\"level_rate_one\":0,\"level_rate_two\":2,\"level_rate_three\":3,\"is_enable\":1,\"operation_time\":1561712545,\"id\":\"20190628170225619905\"}}}', '0', '1561712505', '1561712545'), ('24', 'limitedtimediscount', '{\"application_name\":\"\\u9650\\u65f6\\u79d2\\u6740\",\"goods_list_title\":\"\",\"goods_detail_icon\":\"\",\"goods_detail_title\":\"\",\"content_notice\":\"\",\"time_start\":\"2019-07-09 21:30:36\",\"time_end\":\"2019-07-17 22:31:19\",\"is_actas_price_original\":\"1\",\"pluginsname\":\"limitedtimediscount\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1563206775', '1563207152');
+INSERT INTO `s_plugins` VALUES ('18', 'distribution', '{\"level_list\":{\"20190628170225619905\":{\"name\":\"www\",\"rules_min\":\"0\",\"rules_max\":\"100\",\"images_url\":\"\",\"level_rate_one\":0,\"level_rate_two\":2,\"level_rate_three\":3,\"is_enable\":1,\"operation_time\":1561712545,\"id\":\"20190628170225619905\"}}}', '0', '1561712505', '1561712545'), ('24', 'limitedtimediscount', '{\"application_name\":\"\\u9650\\u65f6\\u79d2\\u6740\",\"goods_list_title\":\"\",\"goods_detail_icon\":\"\",\"goods_detail_title\":\"\",\"content_notice\":\"\",\"time_start\":\"2019-07-09 21:30:36\",\"time_end\":\"2019-07-17 22:31:19\",\"is_actas_price_original\":\"1\",\"pluginsname\":\"limitedtimediscount\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1563206775', '1563207152'), ('25', 'membershiplevel', '{\"level_rules\":\"2\",\"pluginsname\":\"membershiplevel\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"level_list\":{\"20190723184533398308\":{\"name\":\"VIP1\",\"rules_min\":\"\",\"rules_max\":\"100\",\"images_url\":\"\",\"is_enable\":1,\"is_goods_price\":1,\"discount_rate\":\"\",\"order_price\":0,\"full_reduction_price\":0,\"operation_time\":1563883386,\"id\":\"20190723184533398308\"}}}', '1', '1563798897', '1563884227');
COMMIT;
-- ----------------------------
@@ -1520,6 +1522,7 @@ CREATE TABLE `s_user` (
`integral` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '积分',
`locking_integral` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '锁定积分',
`referrer` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '推荐人用户id',
+ `plugins_user_level` char(60) NOT NULL DEFAULT '' COMMENT '用户名',
`is_delete_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '是否已删除(0否, 大于0删除时间)',
`add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
`upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
@@ -1534,7 +1537,7 @@ CREATE TABLE `s_user` (
-- Records of `s_user`
-- ----------------------------
BEGIN;
-INSERT INTO `s_user` VALUES ('11', '', 'oblE349Uda256AatZrhA8u00a3fA', '', '', '0', '', '', '', '臧洪℡¹⁵³⁶⁵⁶⁸⁵²²²', '13222333333', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83ers01TyTvhaELMuQFnOiatBIr21bgHYCWlBCUS8C5sMZ1UmeM0PwwP8JyfEMUItK70JVn4wZiaJpd9g/132', 'Jiangsu', 'Yancheng', '0', '', '0', '0', '0', '0', '1561721022', '1561738272'), ('12', '', 'oblE349Uda256AatZrhA8u00a3fA', '', '', '0', '', '', '', '孟大豪', '13444444444', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJ5mdMxq8smzLoQumbzqDG9E0JmaH3YgrzvQFv6X2mUIpZCNP4Tfucf0hR2kFX5ic6xD2VLhDbkVEg/132', 'Sichuan', 'Pakistan', '0', '', '0', '0', '0', '0', '1561724329', '1561738766'), ('17', '', 'oblE343bmnbKwwjk_QXAuyvjAfkQ', '', '', '0', '', '', '', 'Listen', '13061030006', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/XDkaobOxwicgw4L4lJ9BTL1yt2uYeZrHpGUa5fZ5YJZnuBaOyZwqylYJaxJNuqZcbsQpMDzMySJicDo2wlSdbicjg/132', 'Shandong', 'Binzhou', '0', '', '0', '0', '0', '0', '1561772358', '0'), ('18', '', 'oblE34zQNj6-AyUWPnudQ_EJPj-c', '', '', '0', '', '', '', 'Apple苹果产品销售维修(I exist)', '15087205211', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83erb6UK1OAYlkEqicnPfyP5WdJIicc1vUJibYiboI1vSoAib0bF9CrvZoowHwq0UDHmFmcicmyLehcqkxtHg/132', 'Yunnan', 'Zhaotong', '0', '', '0', '0', '0', '0', '1561778269', '0'), ('19', '', 'oblE344KitClv9tfCrmzOE--aloE', '', '', '0', '', '', '', '刘大麟', '17154969799', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/t94kZDdZIZJ2NDy6slib3upiamiccvSNX61vgeBOIypDvXnkRU8KYuqHgqxWve11qzTPATXuXALkd9vvbibU0hbcng/132', 'Liaoning', 'Shenyang', '0', '', '0', '0', '0', '0', '1561785001', '0'), ('21', '2088502175420842', 'oblE347o4d3-Hwq3HODqona2J4Rk', '', '4FnlgNxH_WW_H5ZMbmFIyZ5l33', '0', '455633', 'da7713a611f844f5d93c0f96b350183f', '', '星途', '17602128368', '', '2', '/static/upload/images/user_avatar/compr/2019/06/30/201906302236513376011343.jpg', 'Shanghai', '上海市', '0', '', '0', '0', '0', '0', '1561790294', '1563290002'), ('22', '', 'oblE34ygzT3hYSeGIMuRA4a_7sDQ', '', '', '0', '', '', '', 'L', '15869122717', '', '1', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKGZ8FnFIb0QzmtXSic1VqsKeajAwsLcia6hnFFFpyWGNYmRfxjrCON2icD2gHU6UfBqoKPdEumRTuJg/132', 'Zhejiang', 'Hangzhou', '0', '', '0', '0', '0', '0', '1561792772', '0'), ('23', '', 'oblE347rlahRinVmFQ4f50rHEjCI', '', '', '0', '', '', '', 'Feier', '13303257313', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eo4fKKWYXH3KHibOJEd1pmzlYdoEkMsYIm4cx4zpQGIc9jxqs7p0XCwBeDUdFIIz5l1RMyhFR7Wk1w/132', 'Hebei', 'Tangshan', '0', '', '0', '0', '0', '0', '1561803391', '0'), ('24', '', 'oblE34ygqjXnPe0l9uR-KdN5lILE', '', '', '0', '', '', '', '君', '15014687677', '', '1', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83epWic0BNexT2707VQSYCdLp7wZgCpNJZYfTjrJNvM8M9fFTxn2yJCPriaFqP6PsunUyiczSzHBlhCVJQ/132', 'Guangdong', 'Foshan', '0', '', '0', '0', '0', '0', '1561854753', '0');
+INSERT INTO `s_user` VALUES ('11', '', 'oblE349Uda256AatZrhA8u00a3fA', '', '', '0', '', '', '', '臧洪℡¹⁵³⁶⁵⁶⁸⁵²²²', '13222333333', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83ers01TyTvhaELMuQFnOiatBIr21bgHYCWlBCUS8C5sMZ1UmeM0PwwP8JyfEMUItK70JVn4wZiaJpd9g/132', 'Jiangsu', 'Yancheng', '0', '', '0', '0', '0', '', '0', '1561721022', '1561738272'), ('12', '', 'oblE349Uda256AatZrhA8u00a3fA', '', '', '0', '', '', '', '孟大豪', '13444444444', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJ5mdMxq8smzLoQumbzqDG9E0JmaH3YgrzvQFv6X2mUIpZCNP4Tfucf0hR2kFX5ic6xD2VLhDbkVEg/132', 'Sichuan', 'Pakistan', '0', '', '0', '0', '0', '', '0', '1561724329', '1561738766'), ('17', '', 'oblE343bmnbKwwjk_QXAuyvjAfkQ', '', '', '0', '', '', '', 'Listen', '13061030006', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/XDkaobOxwicgw4L4lJ9BTL1yt2uYeZrHpGUa5fZ5YJZnuBaOyZwqylYJaxJNuqZcbsQpMDzMySJicDo2wlSdbicjg/132', 'Shandong', 'Binzhou', '0', '', '0', '0', '0', '', '0', '1561772358', '0'), ('18', '', 'oblE34zQNj6-AyUWPnudQ_EJPj-c', '', '', '0', '', '', '', 'Apple苹果产品销售维修(I exist)', '15087205211', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83erb6UK1OAYlkEqicnPfyP5WdJIicc1vUJibYiboI1vSoAib0bF9CrvZoowHwq0UDHmFmcicmyLehcqkxtHg/132', 'Yunnan', 'Zhaotong', '0', '', '0', '0', '0', '', '0', '1561778269', '0'), ('19', '', 'oblE344KitClv9tfCrmzOE--aloE', '', '', '0', '', '', '', '刘大麟', '17154969799', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/t94kZDdZIZJ2NDy6slib3upiamiccvSNX61vgeBOIypDvXnkRU8KYuqHgqxWve11qzTPATXuXALkd9vvbibU0hbcng/132', 'Liaoning', 'Shenyang', '0', '', '0', '0', '0', '', '0', '1561785001', '0'), ('21', '2088502175420842', 'oblE347o4d3-Hwq3HODqona2J4Rk', '', '4FnlgNxH_WW_H5ZMbmFIyZ5l33', '0', '501381', 'b6cda6803c2f497de44e94b9ae476586', '', '星途', '17602128368', '', '2', '/static/upload/images/user_avatar/compr/2019/06/30/201906302236513376011343.jpg', 'Shanghai', '上海市', '0', '', '0', '0', '0', '20190723184533398308', '0', '1561790294', '1563886560'), ('22', '', 'oblE34ygzT3hYSeGIMuRA4a_7sDQ', '', '', '0', '', '', '', 'L', '15869122717', '', '1', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKGZ8FnFIb0QzmtXSic1VqsKeajAwsLcia6hnFFFpyWGNYmRfxjrCON2icD2gHU6UfBqoKPdEumRTuJg/132', 'Zhejiang', 'Hangzhou', '0', '', '0', '0', '0', '', '0', '1561792772', '0'), ('23', '', 'oblE347rlahRinVmFQ4f50rHEjCI', '', '', '0', '', '', '', 'Feier', '13303257313', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eo4fKKWYXH3KHibOJEd1pmzlYdoEkMsYIm4cx4zpQGIc9jxqs7p0XCwBeDUdFIIz5l1RMyhFR7Wk1w/132', 'Hebei', 'Tangshan', '0', '', '0', '0', '0', '', '0', '1561803391', '0'), ('24', '', 'oblE34ygqjXnPe0l9uR-KdN5lILE', '', '', '0', '', '', '', '君', '15014687677', '', '1', 'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83epWic0BNexT2707VQSYCdLp7wZgCpNJZYfTjrJNvM8M9fFTxn2yJCPriaFqP6PsunUyiczSzHBlhCVJQ/132', 'Guangdong', 'Foshan', '0', '', '0', '0', '0', '20190723184533398308', '0', '1561854753', '1563885521');
COMMIT;
-- ----------------------------
diff --git a/public/appmini/old/baidu/project.swan.json b/public/appmini/old/baidu/project.swan.json
index 1a5a78834..6838e6381 100644
--- a/public/appmini/old/baidu/project.swan.json
+++ b/public/appmini/old/baidu/project.swan.json
@@ -1 +1 @@
-{"appid":"16634987","cloudTesting":{"forcePreview":false},"editor":{"curPath":"/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-search/goods-search.js","expands":["/data/www/project/shopxo/public/appmini/old/baidu/pages","/data/www/project/shopxo/public/appmini/old/baidu/pages/index","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-detail","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-category","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-search"],"markdownUploadTimeMap":{},"paths":["/data/www/project/shopxo/public/appmini/old/baidu/pages/index/index.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-detail/goods-detail.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-category/goods-category.js","/data/www/project/shopxo/public/appmini/old/baidu/app.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-search/goods-search.js"],"recentlyFiles":["/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-search/goods-search.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-category/goods-category.js","/data/www/project/shopxo/public/appmini/old/baidu/app.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/index/index.js","/data/www/project/shopxo/public/appmini/old/baidu/pages/goods-detail/goods-detail.js"]},"host":"baiduboxapp","preview":{"packageId":222766},"publish":{"version":"1.0.1.0"},"setting":{"urlCheck":false},"swan":{"baiduboxapp":{"extensionJsVersion":"","swanJsVersion":"3.30.43"}}}
\ No newline at end of file
+{"appid":"16634987","cloudTesting":{"forcePreview":false},"editor":{"curPath":"","expands":[],"markdownUploadTimeMap":{},"paths":[],"recentlyFiles":["/Volumes/dev/data/www/project/shopxo/public/appmini/old/baidu/app.json","/Volumes/dev/data/www/project/shopxo/public/appmini/old/baidu/app.js"]},"host":"baiduboxapp","preview":{"packageId":222766},"publish":{"version":"1.0.1.0"},"setting":{"urlCheck":false},"swan":{"baiduboxapp":{"extensionJsVersion":"","swanJsVersion":"3.30.43"}}}
\ No newline at end of file
diff --git a/public/static/common/css/common.css b/public/static/common/css/common.css
index 8ce65c607..da56ac718 100755
--- a/public/static/common/css/common.css
+++ b/public/static/common/css/common.css
@@ -375,4 +375,41 @@ button.colorpicker-submit img {
*/
.am-radio input[type="radio"], .am-radio-inline input[type="radio"], .am-checkbox input[type="checkbox"], .am-checkbox-inline input[type="checkbox"] {
margin: -3px;
+}
+
+
+/**
+ * 插件标记
+ */
+.plugins-tag {
+ background: #333;
+ border: 3px solid #e90000;
+ text-align: center;
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ cursor: pointer;
+ display: -webkit-inline-box;
+}
+.plugins-tag, .plugins-tag span {
+ -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
+ -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
+}
+.plugins-tag span {
+ font-size: 16px;
+ font-weight: bold;
+ color: #e90000;
+ text-shadow: 1px 1px #bfbfbf;
+ background: #ffdfdf;
+ padding: 2px 6px;
+ border-radius: 3px;
+ border: 1px solid #ffd4d4;
+ position: absolute;
+ margin: -12px 0 0 -5px;
+ z-index: 2;
+ display: none;
+}
+.plugins-tag:hover span {
+ display: block;
}
\ No newline at end of file
diff --git a/public/static/index/default/css/common.css b/public/static/index/default/css/common.css
index 2ed5c13fa..f375776f0 100755
--- a/public/static/index/default/css/common.css
+++ b/public/static/index/default/css/common.css
@@ -798,42 +798,6 @@ button { outline: none !important; }
.common-cropper-popup .preview-sm { width:50px; height:50px; }
}
-/**
- * 插件标记
- */
-.plugins-tag {
- background: #333;
- border: 3px solid #e90000;
- text-align: center;
- width: 15px;
- height: 15px;
- border-radius: 50%;
- cursor: pointer;
- display: -webkit-inline-box;
-}
-.plugins-tag, .plugins-tag span {
- -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
- -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
-}
-.plugins-tag span {
- font-size: 16px;
- font-weight: bold;
- color: #e90000;
- text-shadow: 1px 1px #bfbfbf;
- background: #ffdfdf;
- padding: 2px 6px;
- border-radius: 3px;
- border: 1px solid #ffd4d4;
- position: absolute;
- margin: -12px 0 0 -5px;
- z-index: 2;
- display: none;
-}
-.plugins-tag:hover span {
- display: block;
-}
-
/**
* 公共
*/