diff --git a/application/admin/controller/Order.php b/application/admin/controller/Order.php index 58026a3d3f54dad74ca80cacff1d6be67534ae7f..4972597bdafab1bba7c6589e10a1014a3bd3df5f 100755 --- a/application/admin/controller/Order.php +++ b/application/admin/controller/Order.php @@ -106,11 +106,45 @@ class Order extends Common // 评价状态 $this->assign('common_comments_status_list', lang('common_comments_status_list')); + // Excel地址 + $this->assign('excel_url', MyUrl('admin/order/excelexport', input())); + // 参数 $this->assign('params', $params); return $this->fetch(); } + /** + * [ExcelExport excel文件导出] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2017-01-10T15:46:00+0800 + */ + public function ExcelExport() + { + // 参数 + $params = input(); + $params['admin'] = $this->admin; + $params['user_type'] = 'admin'; + + // 条件 + $where = OrderService::OrderListWhere($params); + + // 获取列表 + $data_params = array( + 'where' => $where, + 'm' => 0, + 'n' => 100000, + 'is_excel_export' => 1, + ); + $data = OrderService::OrderList($data_params); + + // Excel驱动导出数据 + $excel = new \base\Excel(array('filename'=>'order', 'title'=>lang('excel_order_title_list'), 'data'=>$data['data'], 'msg'=>'没有相关数据')); + return $excel->Export(); + } + /** * [Delete 订单删除] * @author Devil diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index fcc4480cce4b8c9d0db9b197df2a6c68c42f743f..46ef37866ff9c8de47589c9b7d3f7e2d37ee0ff1 100755 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -86,7 +86,7 @@ class User extends Common $this->assign('params', $params); $this->assign('page_html', $page->GetPageHtml()); - $this->assign('data', $data); + $this->assign('data', $data['data']); return $this->fetch(); } @@ -111,7 +111,7 @@ class User extends Common $data = UserService::UserList($data_params); // Excel驱动导出数据 - $excel = new \base\Excel(array('filename'=>'user', 'title'=>lang('excel_user_title_list'), 'data'=>$data, 'msg'=>'没有相关数据')); + $excel = new \base\Excel(array('filename'=>'user', 'title'=>lang('excel_user_title_list'), 'data'=>$data['data'], 'msg'=>'没有相关数据')); return $excel->Export(); } @@ -136,12 +136,12 @@ class User extends Common 'n' => 1, ]; $data = UserService::UserList($data_params); - if(empty($data[0])) + if(empty($data['data'][0])) { return $this->error('用户信息不存在', MyUrl('admin/user/index')); } - $data[0]['birthday_text'] = empty($data[0]['birthday']) ? '' : date('Y-m-d', $data[0]['birthday']); - $this->assign('data', $data[0]); + $data['data'][0]['birthday_text'] = empty($data['data'][0]['birthday']) ? '' : date('Y-m-d', $data['data'][0]['birthday']); + $this->assign('data', $data['data'][0]); } // 性别 diff --git a/application/admin/lang/zh-cn.php b/application/admin/lang/zh-cn.php index 53fb9fa92501e6dd5d627d97c4baeb8072cc6627..c9441fd123bcc4c66ece1cf0377d90842d26151e 100755 --- a/application/admin/lang/zh-cn.php +++ b/application/admin/lang/zh-cn.php @@ -106,47 +106,182 @@ return array( ), // 用户excel导出标题列表 - 'excel_user_title_list' => array( - 'username' => array( + 'excel_user_title_list' => [ + 'username' => [ 'name' => '用户名', 'type' => 'string', - ), - 'nickname' => array( + ], + 'nickname' => [ 'name' => '昵称', 'type' => 'int', - ), - 'gender_text' => array( + ], + 'gender_text' => [ 'name' => '性别', 'type' => 'string', - ), - 'birthday_text'=> array( + ], + 'birthday_text'=> [ 'name' => '生日', 'type' => 'string', - ), - 'mobile' => array( + ], + 'mobile' => [ 'name' => '手机号码', 'type' => 'int', - ), - 'email' => array( + ], + 'email' => [ 'name' => '电子邮箱', 'type' => 'string', - ), - 'province' => array( + ], + 'province' => [ 'name' => '所在省', 'type' => 'string', - ), - 'city' => array( + ], + 'city' => [ 'name' => '所在市', 'type' => 'string', - ), - 'address' => array( + ], + 'address' => [ 'name' => '详细地址', 'type' => 'string', - ), - 'add_time' => array( + ], + 'add_time' => [ 'name' => '注册时间', 'type' => 'string', - ), - ), + ], + ], + + + // 订单excel导出 + 'excel_order_title_list' => [ + 'order_no' => [ + 'name' => '订单编号', + 'type' => 'string', + ], + + // 收件人信息 + 'receive_name' => [ + 'name' => '收件人姓名', + 'type' => 'string', + ], + 'receive_tel' => [ + 'name' => '收件人电话', + 'type' => 'string', + ], + 'receive_province_name'=> [ + 'name' => '收件人所在省', + 'type' => 'string', + ], + 'receive_city_name' => [ + 'name' => '收件人所在市', + 'type' => 'string', + ], + 'receive_county_name' => [ + 'name' => '收件人所在区县', + 'type' => 'string', + ], + 'receive_address' => [ + 'name' => '收件人详细地址', + 'type' => 'string', + ], + + // 用户留言 + 'user_note' => [ + 'name' => '用户留言', + 'type' => 'string', + ], + + // 快递信息 + 'express_name' => [ + 'name' => '快递公司', + 'type' => 'string', + ], + 'express_number' => [ + 'name' => '快递单号', + 'type' => 'string', + ], + + // 支付信息 + 'payment_name' => [ + 'name' => '支付方式', + 'type' => 'string', + ], + 'pay_status_name' => [ + 'name' => '支付状态', + 'type' => 'string', + ], + + // 基础信息 + 'status_name' => [ + 'name' => '订单状态', + 'type' => 'string', + ], + 'preferential_price' => [ + 'name' => '优惠金额', + 'type' => 'string', + ], + 'price' => [ + 'name' => '订单单价', + 'type' => 'string', + ], + 'total_price' => [ + 'name' => '订单总价(订单最终价格)', + 'type' => 'string', + ], + 'pay_price' => [ + 'name' => '已支付金额', + 'type' => 'string', + ], + 'excel_export_items' => [ + 'name' => '商品信息', + 'type' => 'string', + ], + 'items_count' => [ + 'name' => '购买总数', + 'type' => 'int', + ], + 'describe' => [ + 'name' => '描述', + 'type' => 'string', + ], + + // 时间 + 'confirm_time' => [ + 'name' => '确认时间', + 'type' => 'string', + ], + 'pay_time' => [ + 'name' => '支付时间', + 'type' => 'string', + ], + 'delivery_time' => [ + 'name' => '发货时间', + 'type' => 'string', + ], + 'collect_time' => [ + 'name' => '完成时间', + 'type' => 'string', + ], + 'cancel_time' => [ + 'name' => '取消时间', + 'type' => 'string', + ], + 'close_time' => [ + 'name' => '关闭时间', + 'type' => 'string', + ], + 'add_time' => [ + 'name' => '创建时间', + 'type' => 'string', + ], + 'upd_time' => [ + 'name' => '更新时间', + 'type' => 'string', + ], + + // 评论 + 'user_is_comments_time' => [ + 'name' => '评论时间', + 'type' => 'string', + ], + ], ); ?> \ No newline at end of file diff --git a/application/admin/view/default/order/index.html b/application/admin/view/default/order/index.html index 77d4c48536d6a5a4a70b2c25990b6dce9850481e..e3f52f3f7a5684cd4d859b55f115c0074c0d0138 100755 --- a/application/admin/view/default/order/index.html +++ b/application/admin/view/default/order/index.html @@ -49,6 +49,14 @@ + +
+ {{if !IsMobile()}} + 导出Excel + {{/if}} +
+ + diff --git a/application/service/BuyService.php b/application/service/BuyService.php index ac284148a264bc8132bfb698e29e13e5bcfe952c..bc46268744a3ff3099640c0e2434f0241a131fa2 100755 --- a/application/service/BuyService.php +++ b/application/service/BuyService.php @@ -186,6 +186,9 @@ class BuyService $v['inventory'] = $goods_base['data']['inventory']; $v['price'] = $goods_base['data']['price']; $v['original_price'] = $goods_base['data']['original_price']; + $v['spec_weight'] = $goods_base['data']['weight']; + $v['spec_coding'] = $goods_base['data']['coding']; + $v['spec_barcode'] = $goods_base['data']['barcode']; } else { return $goods_base; } @@ -366,6 +369,9 @@ class BuyService $goods[0]['inventory'] = $goods_base['data']['inventory']; $goods[0]['price'] = $goods_base['data']['price']; $goods[0]['original_price'] = $goods_base['data']['original_price']; + $goods[0]['spec_weight'] = $goods_base['data']['weight']; + $goods[0]['spec_coding'] = $goods_base['data']['coding']; + $goods[0]['spec_barcode'] = $goods_base['data']['barcode']; } else { return $goods_base; } @@ -630,6 +636,8 @@ class BuyService $order['confirm_time'] = time(); } + //print_r($goods['data']);die; + // 开始事务 Db::startTrans(); @@ -649,6 +657,9 @@ class BuyService 'original_price' => $v['original_price'], 'price' => $v['price'], 'spec' => empty($v['spec']) ? '' : json_encode($v['spec']), + 'spec_weight' => $v['spec_weight'], + 'spec_coding' => $v['spec_coding'], + 'spec_barcode' => $v['spec_barcode'], 'buy_number' => $v['stock'], 'add_time' => time(), ]; diff --git a/application/service/GoodsService.php b/application/service/GoodsService.php index 9333979e2815f5e44913877f83cba2c4b5299b6e..6972ebbea27bced8034a35758b342abb5d65bbed 100755 --- a/application/service/GoodsService.php +++ b/application/service/GoodsService.php @@ -1752,7 +1752,7 @@ class GoodsService // 获取基础值数据 if(!empty($base_id)) { - $base = Db::name('GoodsSpecBase')->field('id,goods_id,price,inventory,coding,barcode,original_price')->find($base_id); + $base = Db::name('GoodsSpecBase')->find($base_id); if(!empty($base)) { return DataReturn('操作成功', 0, $base); @@ -1761,7 +1761,7 @@ class GoodsService } } } else { - $base = Db::name('GoodsSpecBase')->field('id,goods_id,price,inventory,coding,barcode,original_price')->where($where)->find(); + $base = Db::name('GoodsSpecBase')->where($where)->find(); if(!empty($base)) { return DataReturn('操作成功', 0, $base); diff --git a/application/service/OrderService.php b/application/service/OrderService.php index 42773a65a6075f5c680b5793de01563602f35f4b..adfc7ca8d1f5ee741f8a0b033a8605b47b3463a7 100755 --- a/application/service/OrderService.php +++ b/application/service/OrderService.php @@ -11,7 +11,6 @@ namespace app\service; use think\Db; -use app\service\GoodsService; use app\service\PaymentService; use app\service\BuyService; use app\service\IntegralService; @@ -569,12 +568,12 @@ class OrderService $n = isset($params['n']) ? intval($params['n']) : 10; $order_by = empty($params['order_by']) ? 'id desc' : $params['order_by']; $is_items = isset($params['is_items']) ? intval($params['is_items']) : 1; + $is_excel_export = isset($params['is_excel_export']) ? intval($params['is_excel_export']) : 0; // 获取订单 $data = Db::name('Order')->where($where)->limit($m, $n)->order($order_by)->select(); if(!empty($data)) { - $detail_field = 'id,goods_id,title,images,original_price,price,spec,buy_number'; $order_status_list = lang('common_order_user_status'); $order_pay_status = lang('common_order_pay_status'); foreach($data as &$v) @@ -638,19 +637,51 @@ class OrderService // 订单详情 if($is_items == 1) { - $items = Db::name('OrderDetail')->where(['order_id'=>$v['id']])->field($detail_field)->select(); + $items = Db::name('OrderDetail')->where(['order_id'=>$v['id']])->select(); + $excel_export_items = ''; if(!empty($items)) { foreach($items as &$vs) { + // 商品信息 $vs['images'] = ResourcesService::AttachmentPathViewHandle($vs['images']); - $vs['spec'] = empty($vs['spec']) ? null : json_decode($vs['spec'], true); $vs['goods_url'] = MyUrl('index/goods/index', ['id'=>$vs['goods_id']]); $vs['total_price'] = $vs['buy_number']*$vs['price']; + + // 规格 + if(!empty($vs['spec'])) + { + $vs['spec'] = json_decode($vs['spec'], true); + $vs['spec_text'] = implode(',', array_map(function($spec) + { + return $spec['type'].':'.$spec['value']; + }, $vs['spec'])); + } else { + $vs['spec'] = null; + $vs['spec_text'] = null; + } + + // 是否excel导出 + if($is_excel_export == 1) + { + $excel_export_items .= '名称:'.$vs['title']."\n"; + $excel_export_items .= '图片:'.$vs['images']."\n"; + $excel_export_items .= '地址:'.$vs['goods_url']."\n"; + $excel_export_items .= '原价:'.$vs['original_price']."\n"; + $excel_export_items .= '销售价:'.$vs['price']."\n"; + $excel_export_items .= '总价:'.$vs['total_price']."\n"; + $excel_export_items .= '规格:'.$vs['spec_text']."\n"; + $excel_export_items .= '重量:'.$vs['spec_weight']."\n"; + $excel_export_items .= '编码:'.$vs['spec_coding']."\n"; + $excel_export_items .= '条形码:'.$vs['spec_barcode']."\n"; + $excel_export_items .= '购买数量:'.$vs['buy_number']."\n"; + $excel_export_items .= "\n"; + } } } $v['items'] = $items; $v['items_count'] = count($items); + $v['excel_export_items'] = $excel_export_items; // 描述 $v['describe'] = '共'.$v['items_count'].'件 合计:¥'.$v['total_price'].'元'; diff --git a/application/service/UserService.php b/application/service/UserService.php index 8823bc1b9b3c25aa966b9171b46af80f27afd48b..f84e69e1361ba393cdbaeabbb62bfe60983c52af 100755 --- a/application/service/UserService.php +++ b/application/service/UserService.php @@ -67,7 +67,7 @@ class UserService $v['gender_text'] = $common_gender_list[$v['gender']]['name']; } } - return $data; + return DataReturn('处理成功', 0, $data); } /** diff --git a/config/shopxo.sql b/config/shopxo.sql index f524727bd359a328f4494f2952003be38fc1c424..d7eeec8622309e921e049d96919e9f8232d84ba6 100644 --- a/config/shopxo.sql +++ b/config/shopxo.sql @@ -11,7 +11,7 @@ Target Server Version : 50722 File Encoding : utf-8 - Date: 01/15/2019 16:23:55 PM + Date: 01/21/2019 15:14:12 PM */ SET NAMES utf8mb4; @@ -221,7 +221,7 @@ CREATE TABLE `s_cart` ( KEY `goods_id` (`goods_id`), KEY `title` (`title`), KEY `stock` (`stock`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车'; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车'; -- ---------------------------- -- Table structure for `s_config` @@ -348,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', '1547485917'), ('2', '3', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '1717', '步', '/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', '7', '/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', '1', '', '/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', '1', '', '/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', '3', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '0', '1547453135', '1547453157'), ('7', '6', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '321', '件', '/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', '4', '', '/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', '4', '', '/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', '1', '', '/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', '3', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '1547455700', '1547455700'), ('12', '9', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '', '0', '252', '件', '/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', '3', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1547540181'); +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', '1547485917'), ('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', '1', '', '/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', '1', '', '/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', '3', '', '/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', '4', '', '/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', '1', '', '/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', '3', '', '/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', '6', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1548054454'); COMMIT; -- ---------------------------- @@ -368,7 +368,7 @@ CREATE TABLE `s_goods_browse` ( -- Records of `s_goods_browse` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_browse` VALUES ('1', '1', '90', '1547450927', '1547485924'), ('2', '2', '90', '1547451628', '1547485815'), ('3', '3', '90', '1547452248', '1547452282'), ('4', '4', '90', '1547452557', '1547452557'), ('5', '5', '90', '1547452801', '1547452801'), ('6', '6', '90', '1547453138', '1547453171'), ('7', '7', '90', '1547453971', '1547540615'), ('8', '9', '90', '1547454789', '1547454913'), ('9', '10', '90', '1547455378', '1547455378'), ('10', '11', '90', '1547455704', '1547455719'), ('11', '12', '90', '1547456327', '1547485778'), ('12', '8', '90', '1547540255', '1547540460'); +INSERT INTO `s_goods_browse` VALUES ('1', '1', '90', '1547450927', '1547485924'), ('2', '2', '90', '1547451628', '1548054581'), ('3', '3', '90', '1547452248', '1547452282'), ('4', '4', '90', '1547452557', '1547452557'), ('5', '5', '90', '1547452801', '1547452801'), ('6', '6', '90', '1547453138', '1547453171'), ('7', '7', '90', '1547453971', '1548054602'), ('8', '9', '90', '1547454789', '1547454913'), ('9', '10', '90', '1547455378', '1547455378'), ('10', '11', '90', '1547455704', '1547455719'), ('11', '12', '90', '1547456327', '1548054600'), ('12', '8', '90', '1547540255', '1547540460'); COMMIT; -- ---------------------------- @@ -415,13 +415,13 @@ CREATE TABLE `s_goods_category_join` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `category_id` (`category_id`) -) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类关联'; +) ENGINE=InnoDB AUTO_INCREMENT=48 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'), ('38', '12', '304', '1547540181'), ('39', '12', '318', '1547540181'), ('42', '7', '194', '1547540607'), ('43', '7', '196', '1547540607'); +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'); COMMIT; -- ---------------------------- @@ -438,13 +438,13 @@ CREATE TABLE `s_goods_content_app` ( PRIMARY KEY (`id`), KEY `goods_id` (`goods_id`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品手机详情'; +) ENGINE=InnoDB AUTO_INCREMENT=82 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'), ('64', '12', '/static/upload/images/goods/2019/01/14/1547456214155362.jpg', '', '0', '1547540181'), ('65', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '', '1', '1547540181'), ('66', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '', '2', '1547540181'), ('67', '12', '/static/upload/images/goods/2019/01/14/1547456228913731.jpg', '', '3', '1547540181'), ('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'); +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'); COMMIT; -- ---------------------------- @@ -474,13 +474,13 @@ CREATE TABLE `s_goods_photo` ( KEY `goods_id` (`goods_id`), KEY `is_show` (`is_show`), KEY `sort` (`sort`) -) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品相册图片'; +) ENGINE=InnoDB AUTO_INCREMENT=63 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'), ('50', '12', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '1', '0', '1547540181'), ('51', '12', '/static/upload/images/goods/2019/01/14/1547455907256518.jpg', '1', '1', '1547540181'), ('52', '12', '/static/upload/images/goods/2019/01/14/1547455907486857.jpg', '1', '2', '1547540181'), ('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'); +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'); COMMIT; -- ---------------------------- @@ -499,13 +499,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=79 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格基础'; +) ENGINE=InnoDB AUTO_INCREMENT=89 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', '67', '0', '', '', '6000.00', '1547458880'), ('71', '1', '2100.00', '125', '0', '', '', '3200.00', '1547485917'), ('72', '12', '128.00', '12', '0', '', '', '188.00', '1547540181'), ('73', '12', '128.00', '65', '0', '', '', '188.00', '1547540181'), ('74', '12', '128.00', '42', '0', '', '', '188.00', '1547540181'), ('75', '12', '118.00', '47', '0', '', '', '150.00', '1547540181'), ('76', '12', '118.00', '86', '0', '', '', '150.00', '1547540181'), ('78', '7', '168.00', '321', '0', '', '', '760.00', '1547540607'); +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'); COMMIT; -- ---------------------------- @@ -520,13 +520,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=20 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格类型'; +) ENGINE=InnoDB AUTO_INCREMENT=24 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'), ('18', '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\"}]', '颜色', '1547540181'), ('19', '12', '[{\"name\":\"M\",\"images\":\"\"},{\"name\":\"L\",\"images\":\"\"},{\"name\":\"XL\",\"images\":\"\"}]', '尺码', '1547540181'); +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'); COMMIT; -- ---------------------------- @@ -542,13 +542,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=151 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规格值'; +) ENGINE=InnoDB AUTO_INCREMENT=171 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'), ('141', '12', '72', '粉色', '1547540181'), ('142', '12', '72', 'M', '1547540181'), ('143', '12', '73', '粉色', '1547540181'), ('144', '12', '73', 'L', '1547540181'), ('145', '12', '74', '粉色', '1547540181'), ('146', '12', '74', 'XL', '1547540181'), ('147', '12', '75', '白色', '1547540181'), ('148', '12', '75', 'M', '1547540181'), ('149', '12', '76', '白色', '1547540181'), ('150', '12', '76', 'L', '1547540181'); +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'); COMMIT; -- ---------------------------- @@ -595,7 +595,7 @@ CREATE TABLE `s_message` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`), KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='消息'; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='消息'; -- ---------------------------- -- Table structure for `s_navigation` @@ -711,6 +711,9 @@ CREATE TABLE `s_order_detail` ( `price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单价格', `spec` char(255) NOT NULL DEFAULT '' COMMENT '规格', `buy_number` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '购买数量', + `spec_weight` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '重量(kg)', + `spec_coding` char(80) NOT NULL DEFAULT '' COMMENT '编码', + `spec_barcode` char(8) NOT NULL DEFAULT '' COMMENT '条形码', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`), @@ -823,13 +826,13 @@ CREATE TABLE `s_power` ( `icon` char(60) NOT NULL DEFAULT '' COMMENT '图标class', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=338 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='权限'; +) ENGINE=InnoDB AUTO_INCREMENT=339 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='权限'; -- ---------------------------- -- Records of `s_power` -- ---------------------------- BEGIN; -INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '后台配置', 'Config', 'Index', '0', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'StatusUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('152', '0', '资源管理', 'Resources', 'Index', '29', '1', 'icon-ziyuan', '1526304409'), ('153', '152', '地区管理', 'Region', 'Index', '0', '1', '', '1526304473'), ('154', '152', '地区添加/编辑', 'Region', 'Save', '1', '0', '', '1526304503'), ('155', '152', '地区删除', 'Region', 'Delete', '2', '0', '', '1526304531'), ('156', '152', '快递管理', 'Express', 'Index', '10', '1', '', '1526304473'), ('157', '152', '快递添加/编辑', 'Express', 'Save', '11', '0', '', '1526304473'), ('158', '152', '快递删除', 'Express', 'Delete', '12', '0', '', '1526304473'), ('172', '222', '首页轮播', 'Slide', 'Index', '70', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '71', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '72', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '73', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '74', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '28', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '积分日志', 'IntegralLog', 'Index', '20', '1', '', '1528103067'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '80', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '81', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '26', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '21', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '22', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '23', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '24', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '25', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '31', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '32', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '33', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '34', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '35', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '60', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '61', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '62', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '63', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StatusUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '82', '0', '', '1536227071'), ('259', '152', '支付方式', 'Payment', 'Index', '50', '1', '', '1537156351'), ('260', '152', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '51', '0', '', '1537156423'), ('261', '152', '支付方式安装/编辑', 'Payment', 'Save', '52', '0', '', '1537156463'), ('262', '152', '支付方式删除', 'Payment', 'Delete', '53', '0', '', '1537156502'), ('263', '152', '支付方式安装', 'Payment', 'Install', '54', '0', '', '1537166090'), ('264', '152', '支付方式状态更新', 'Payment', 'StatusUpdate', '55', '0', '', '1537166149'), ('265', '152', '支付方式卸载', 'Payment', 'Uninstall', '56', '0', '', '1537167814'), ('266', '152', '支付方式上传', 'Payment', 'Upload', '57', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '24', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '20', '1', 'icon-shouji', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'), ('331', '118', '日志删除', 'Cache', 'LogDelete', '4', '0', '', '1545642163'), ('332', '0', '微信小程序', 'AppMiniWeixin', 'Index', '25', '1', 'icon-xiaochengxu-wechat', '1546935020'), ('333', '332', '基础配置', 'AppMiniWeixinConfig', 'Index', '0', '1', '', '1546935090'), ('334', '332', '基础配置保存', 'AppMiniWeixinConfig', 'Save', '1', '0', '', '1546935118'), ('335', '332', '小程序', 'AppMiniWeixinList', 'Index', '10', '1', '', '1546935153'), ('336', '332', '小程序生成', 'AppMiniWeixinList', 'Created', '11', '0', '', '1546935187'), ('337', '332', '小程序删除', 'AppMiniWeixinList', 'Delete', '12', '0', '', '1546935212'); +INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '后台配置', 'Config', 'Index', '0', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'StatusUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('152', '0', '资源管理', 'Resources', 'Index', '29', '1', 'icon-ziyuan', '1526304409'), ('153', '152', '地区管理', 'Region', 'Index', '0', '1', '', '1526304473'), ('154', '152', '地区添加/编辑', 'Region', 'Save', '1', '0', '', '1526304503'), ('155', '152', '地区删除', 'Region', 'Delete', '2', '0', '', '1526304531'), ('156', '152', '快递管理', 'Express', 'Index', '10', '1', '', '1526304473'), ('157', '152', '快递添加/编辑', 'Express', 'Save', '11', '0', '', '1526304473'), ('158', '152', '快递删除', 'Express', 'Delete', '12', '0', '', '1526304473'), ('172', '222', '首页轮播', 'Slide', 'Index', '70', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '71', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '72', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '73', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '74', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '28', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '积分日志', 'IntegralLog', 'Index', '20', '1', '', '1528103067'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '80', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '81', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '26', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '21', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '22', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '23', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '24', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '25', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '31', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '32', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '33', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '34', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '35', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '60', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '61', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '62', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '63', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StatusUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '82', '0', '', '1536227071'), ('259', '152', '支付方式', 'Payment', 'Index', '50', '1', '', '1537156351'), ('260', '152', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '51', '0', '', '1537156423'), ('261', '152', '支付方式安装/编辑', 'Payment', 'Save', '52', '0', '', '1537156463'), ('262', '152', '支付方式删除', 'Payment', 'Delete', '53', '0', '', '1537156502'), ('263', '152', '支付方式安装', 'Payment', 'Install', '54', '0', '', '1537166090'), ('264', '152', '支付方式状态更新', 'Payment', 'StatusUpdate', '55', '0', '', '1537166149'), ('265', '152', '支付方式卸载', 'Payment', 'Uninstall', '56', '0', '', '1537167814'), ('266', '152', '支付方式上传', 'Payment', 'Upload', '57', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '24', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '20', '1', 'icon-shouji', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'), ('331', '118', '日志删除', 'Cache', 'LogDelete', '4', '0', '', '1545642163'), ('332', '0', '微信小程序', 'AppMiniWeixin', 'Index', '25', '1', 'icon-xiaochengxu-wechat', '1546935020'), ('333', '332', '基础配置', 'AppMiniWeixinConfig', 'Index', '0', '1', '', '1546935090'), ('334', '332', '基础配置保存', 'AppMiniWeixinConfig', 'Save', '1', '0', '', '1546935118'), ('335', '332', '小程序', 'AppMiniWeixinList', 'Index', '10', '1', '', '1546935153'), ('336', '332', '小程序生成', 'AppMiniWeixinList', 'Created', '11', '0', '', '1546935187'), ('337', '332', '小程序删除', 'AppMiniWeixinList', 'Delete', '12', '0', '', '1546935212'), ('338', '177', 'Excel导出', 'Order', 'ExcelExport', '8', '0', '', '1548054782'); COMMIT; -- ---------------------------- @@ -981,13 +984,6 @@ CREATE TABLE `s_search_history` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; --- ---------------------------- --- Records of `s_search_history` --- ---------------------------- -BEGIN; -INSERT INTO `s_search_history` VALUES ('1', '0', '0', '0', '', '0-0', 'default', 'asc', '20190114', '1547449654'), ('2', '0', '0', '0', '', '0-0', 'default', 'asc', '20190114', '1547449767'), ('3', '90', '0', '0', '', '0-0', 'default', 'asc', '20190114', '1547449774'), ('4', '90', '0', '1', '', '0-0', 'default', 'asc', '20190114', '1547449957'), ('5', '90', '0', '306', '', '0-0', 'default', 'asc', '20190114', '1547449961'), ('6', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485730'), ('7', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485734'), ('8', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485735'), ('9', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485736'), ('10', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485794'), ('11', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485798'), ('12', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485800'), ('13', '90', '0', '0', '', '0-0', 'default', 'asc', '20190115', '1547485802'), ('14', '90', '0', '1', '', '0-0', 'default', 'asc', '20190115', '1547485806'), ('15', '90', '0', '1', '', '0-0', 'default', 'asc', '20190115', '1547485810'); -COMMIT; - -- ---------------------------- -- Table structure for `s_slide` -- ----------------------------