diff --git a/alipay/app.js b/alipay/app.js index 7b2fe07d3d369ffbac9dc94ead5cb56d0dc63568..4d8c5492ca76885abc5fbd1538cb6f9b6403a02f 100755 --- a/alipay/app.js +++ b/alipay/app.js @@ -44,8 +44,8 @@ App({ }, // 请求地址 - //request_url: "http://demo.shopxo.net/", - request_url: 'http://localhost/project/shopxo/service/', + request_url: "https://demo.shopxo.net/", + //request_url: 'http://localhost/project/shopxo/service/', // 基础信息 application_title: "ShopXO电商系统", diff --git a/alipay/components/home-nav/home-nav.axml b/alipay/components/home-nav/home-nav.axml index f87f896258cd7bb32c15ca85f96ba7862714e814..4a053e3414b421c9ae060f5380a0b917d709e4f4 100644 --- a/alipay/components/home-nav/home-nav.axml +++ b/alipay/components/home-nav/home-nav.axml @@ -1,5 +1,5 @@ - + diff --git a/alipay/pages/index/index.acss b/alipay/pages/index/index.acss index 1b7ad2acdfef7ac27ebdd3afca000a7d4c1d4fc2..696f761bc5d2970d7b1853d25ba822319b9e7d94 100755 --- a/alipay/pages/index/index.acss +++ b/alipay/pages/index/index.acss @@ -1,23 +1,16 @@ -.floor { - -} -.floor, .floor-list, .floor-left { +.floor-list, .floor-left { overflow: hidden; position: relative; } -.floor .nav-name { - font-size: 34rpx; - font-weight: 500; - text-align: center; - padding: 10rpx 0; -} .floor .vice-name { - top: 20rpx; - left: 20rpx; + color: #fff; + margin-top: 20rpx; + padding: 0 10rpx; + font-size: 34rpx; + line-height: 48rpx; } .floor-left { width: 40%; - float: left; height: 660rpx; } .floor-left image { @@ -27,32 +20,36 @@ } -.floor .vice-name, .floor-left image, .goods-list .goods:nth-child(1), -.goods-list .goods:nth-child(2) { +.goods-list .goods:nth-child(2), +.goods-list .goods:nth-child(1) .goods-base, +.goods-list .goods:nth-child(2) .goods-base { position: absolute; } .goods-list .goods { - height: 330rpx; - background-color: #fff; overflow: hidden; } .goods-list .goods image { width: 100%; + height: 330rpx; } .goods-list .goods:nth-child(1), .goods-list .goods:nth-child(2) { width: 60%; + height: 330rpx; } .goods-list .goods:nth-child(1) .goods-base, .goods-list .goods:nth-child(2) .goods-base { - float: left; + padding-left: 10rpx; + width: calc(40% - 10rpx); + bottom: 20rpx; } .goods-list .goods:nth-child(1) image, .goods-list .goods:nth-child(2) image { width: 60%; + height: 330rpx; float: right; } .goods-list .goods:nth-child(1) { @@ -67,6 +64,17 @@ .goods-list .goods:nth-child(4), .goods-list .goods:nth-child(5), .goods-list .goods:nth-child(6) { - margin-top: 330rpx; width: 50%; + height: 430rpx; + float: left; +} +.goods-list .goods-base { + padding: 0 10rpx; +} +.goods-base .goods-title { + line-height: 52rpx; + font-size: 32rpx; +} +.goods-base .sales-price { + font-size: 30rpx; } \ No newline at end of file diff --git a/alipay/pages/index/index.axml b/alipay/pages/index/index.axml index e7fb9f618b916d86108e0968197642005594060d..ac359291bb3e4028887160c52359c07dd4a07ae7 100755 --- a/alipay/pages/index/index.axml +++ b/alipay/pages/index/index.axml @@ -5,11 +5,11 @@ - - - - {{floor.name}} + + + + {{floor.name}} @@ -17,24 +17,27 @@ - - - - {{goods.title}} - - + + + + + {{goods.title}} + ¥{{goods.price}} + + - + + diff --git a/service/Application/Service/GoodsService.class.php b/service/Application/Service/GoodsService.class.php index be293ecddfc7318a840c5873823c2094ad2f41c5..c35f60227963387cebda923c3c497575b7e97337 100755 --- a/service/Application/Service/GoodsService.class.php +++ b/service/Application/Service/GoodsService.class.php @@ -44,7 +44,8 @@ class GoodsService */ public static function GoodsCategory($params = []) { - $data = self::GoodsCategoryList(['pid'=>0]); + $where = empty($params['where']) ? ['pid'=>0] : $params['where']; + $data = self::GoodsCategoryList($where); if(!empty($data)) { foreach($data as &$v) @@ -69,13 +70,13 @@ class GoodsService * @version 1.0.0 * @date 2018-08-29 * @desc description - * @param [array] $params [输入参数] + * @param [array] $where [条件] */ - public static function GoodsCategoryList($params = []) + public static function GoodsCategoryList($where = []) { - $pid = isset($params['pid']) ? intval($params['pid']) : 0; + $where['is_enable'] = 1; $field = 'id,pid,icon,name,vice_name,describe,bg_color,big_images,sort,is_home_recommended'; - $data = M('GoodsCategory')->field($field)->where(['is_enable'=>1, 'pid'=>$pid])->order('sort asc')->select(); + $data = M('GoodsCategory')->field($field)->where($where)->order('sort asc')->select(); return self::GoodsCategoryDataDealWith($data); } @@ -124,13 +125,14 @@ class GoodsService public static function HomeFloorList($params = []) { // 商品大分类 - $goods_category = self::GoodsCategory(); + $params['where'] = ['pid'=>0, 'is_home_recommended'=>1]; + $goods_category = self::GoodsCategory($params); if(!empty($goods_category)) { foreach($goods_category as &$v) { $category_ids = self::GoodsCategoryItemsIds(['category_id'=>$v['id']]); - $v['goods'] = self::GoodsList(['where'=>['gci.category_id'=>['in', $category_ids], 'is_home_recommended'=>1], 'm'=>0, 'n'=>6, 'field'=>'g.title,g.title_color,g.images,g.home_recommended_images,g.original_price,g.price,g.inventory,g.buy_min_number,g.buy_max_number']); + $v['goods'] = self::GoodsList(['where'=>['gci.category_id'=>['in', $category_ids], 'is_home_recommended'=>1], 'm'=>0, 'n'=>6, 'field'=>'g.id,g.title,g.title_color,g.images,g.home_recommended_images,g.original_price,g.price,g.inventory,g.buy_min_number,g.buy_max_number']); } } return $goods_category; diff --git a/service/Install/shopxo.sql b/service/Install/shopxo.sql index f8ec65320b273520455d6a87c4425acefeb8d001..93f657d496596c1b5877140df37423cd455e6b0a 100644 --- a/service/Install/shopxo.sql +++ b/service/Install/shopxo.sql @@ -1,20 +1,18 @@ /* - Navicat Premium Data Transfer + Navicat MySQL Data Transfer Source Server : 本机 - Source Server Type : MySQL - Source Server Version : 50722 + Source Server Version : 50716 Source Host : localhost Source Database : shopxo - Target Server Type : MySQL - Target Server Version : 50722 + Target Server Version : 50716 File Encoding : utf-8 - Date: 11/19/2018 18:39:36 PM + Date: 11/20/2018 01:10:16 AM */ -SET NAMES utf8mb4; +SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- @@ -40,7 +38,7 @@ CREATE TABLE `s_admin` ( -- Records of `s_admin` -- ---------------------------- BEGIN; -INSERT INTO `s_admin` VALUES ('1', 'admin', '7fa38e320b17f2b33f66d9cc54a371d4', '614981', '17602128368', '0', '352', '1542612292', '1', '1481350313', '1542183798'), ('3', 'testtest', '85c63962ebbc2a55dcd3c0ec1ba27b57', '019830', '13222333333', '2', '47', '1539945747', '13', '1483947758', '1542252461'); +INSERT INTO `s_admin` VALUES ('1', 'admin', 'a2299234fc7d78996b156aafb405ba0c', '912464', '17602128368', '0', '353', '1542647208', '1', '1481350313', '1542183798'), ('3', 'testtest', '85c63962ebbc2a55dcd3c0ec1ba27b57', '019830', '13222333333', '2', '47', '1539945747', '13', '1483947758', '1542252461'); COMMIT; -- ---------------------------- @@ -403,7 +401,7 @@ CREATE TABLE `s_app_home_nav` ( -- Records of `s_app_home_nav` -- ---------------------------- BEGIN; -INSERT INTO `s_app_home_nav` VALUES ('1', 'alipay', '1', '/pages/goods-category/goods-category', '/Public/Upload/app_home_nav/2018/11/19/2018111915461980516.png', '分类', '1', '#FF3300', '0', '1542563498', '1542618339'), ('2', 'alipay', '1', '/pages/cart/cart', '/Public/Upload/app_home_nav/2018/11/19/2018111915473948001.png', '购物车', '1', '#48CFAE', '1', '1542613659', '1542618347'), ('3', 'alipay', '1', '/pages/order/order', '/Public/Upload/app_home_nav/2018/11/19/2018111915482687655.png', '订单', '1', '#fa506c', '2', '1542613706', '1542618353'), ('4', 'alipay', '1', '/pages/user/user', '/Public/Upload/app_home_nav/2018/11/19/2018111915491258361.png', '我的', '1', '#49acfa', '3', '1542613752', '1542618360'); +INSERT INTO `s_app_home_nav` VALUES ('1', 'alipay', '1', '/pages/goods-category/goods-category', '/Public/Upload/app_home_nav/2018/11/19/2018111915461980516.png', '分类', '1', '#FF3300', '0', '1542563498', '1542618339'), ('2', 'alipay', '1', '/pages/cart/cart', '/Public/Upload/app_home_nav/2018/11/19/2018111915473948001.png', '购物车', '1', '#48CFAE', '1', '1542613659', '1542618347'), ('3', 'alipay', '1', '/pages/user-order/user-order', '/Public/Upload/app_home_nav/2018/11/19/2018111915482687655.png', '订单', '1', '#fa506c', '2', '1542613706', '1542647236'), ('4', 'alipay', '1', '/pages/user/user', '/Public/Upload/app_home_nav/2018/11/19/2018111915491258361.png', '我的', '1', '#49acfa', '3', '1542613752', '1542618360'); COMMIT; -- ---------------------------- @@ -1389,13 +1387,13 @@ CREATE TABLE `s_search_history` ( `ymd` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '日期 ymd', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; +) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; -- ---------------------------- -- Records of `s_search_history` -- ---------------------------- BEGIN; -INSERT INTO `s_search_history` VALUES ('1', '0', '0', '1', '', '', 'default', 'desc', '20181030', '1540914667'), ('2', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540914775'), ('3', '0', '0', '0', '连衣裙', '300-600', 'default', 'desc', '20181030', '1540915071'), ('4', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915073'), ('5', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540915083'), ('6', '0', '0', '0', '连衣裙', '0-100', 'default', 'desc', '20181030', '1540915083'), ('7', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'desc', '20181030', '1540915094'), ('8', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'asc', '20181030', '1540915094'), ('9', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915096'), ('10', '0', '0', '0', '连衣裙', '300-600', 'sales_count', 'asc', '20181030', '1540915097'), ('11', '0', '0', '0', '连衣裙', '300-600', 'price', 'desc', '20181030', '1540915098'), ('12', '0', '0', '0', '连衣裙', '300-600', 'price', 'asc', '20181030', '1540915098'), ('13', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915099'), ('14', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915100'), ('15', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915101'), ('16', '0', '0', '0', '连衣裙', '100-300', 'default', 'asc', '20181030', '1540915101'), ('17', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915101'), ('18', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915102'), ('19', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915102'), ('20', '0', '0', '0', '连衣裙', '100-300', 'price', 'desc', '20181030', '1540915103'), ('21', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915103'), ('22', '0', '0', '0', '连衣裙', '', 'price', 'asc', '20181030', '1540915123'), ('23', '0', '0', '2', '', '', 'default', 'asc', '20181030', '1540915128'), ('24', '0', '2', '2', '', '', 'default', 'asc', '20181030', '1540915142'), ('25', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915145'), ('26', '0', '4', '305', '', '', 'default', 'asc', '20181030', '1540915147'), ('27', '0', '4', '304', '', '', 'default', 'asc', '20181030', '1540915148'), ('28', '0', '4', '310', '', '', 'default', 'asc', '20181030', '1540915151'), ('29', '0', '4', '308', '', '', 'default', 'asc', '20181030', '1540915152'), ('30', '0', '4', '189', '', '', 'default', 'asc', '20181030', '1540915153'), ('31', '0', '4', '191', '', '', 'default', 'asc', '20181030', '1540915154'), ('32', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915155'), ('33', '0', '4', '309', '', '', 'default', 'asc', '20181030', '1540915158'), ('34', '0', '4', '311', '', '', 'default', 'asc', '20181030', '1540915158'), ('35', '0', '4', '188', '', '', 'default', 'asc', '20181030', '1540915159'), ('36', '90', '0', '2', '', '', 'default', 'asc', '20181031', '1540915293'), ('37', '77', '0', '0', '小米', '', 'default', 'asc', '20181114', '1542173791'), ('38', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542184198'), ('39', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184466'), ('40', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184650'), ('41', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184688'), ('42', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184896'), ('43', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542184903'), ('44', '77', '0', '0', '', '', 'sales_count', 'asc', '20181114', '1542184908'), ('45', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185667'), ('46', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185701'), ('47', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185706'), ('48', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185727'), ('49', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185730'), ('50', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542185740'), ('51', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185862'), ('52', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185870'), ('53', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185873'), ('54', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185878'), ('55', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185879'), ('56', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185881'), ('57', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185931'), ('58', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185933'), ('59', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185934'), ('60', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185936'), ('61', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185956'), ('62', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185979'), ('63', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('64', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('65', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185986'), ('66', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185996'), ('67', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185997'), ('68', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185998'), ('69', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185999'), ('70', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186002'), ('71', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186044'), ('72', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542187732'), ('73', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189218'), ('74', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189248'), ('75', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189252'), ('76', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189502'), ('77', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189516'), ('78', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189526'), ('79', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252090'), ('80', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252092'), ('81', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252093'), ('82', '0', '0', '0', '', '', 'default', 'asc', '20181119', '1542592056'); +INSERT INTO `s_search_history` VALUES ('1', '0', '0', '1', '', '', 'default', 'desc', '20181030', '1540914667'), ('2', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540914775'), ('3', '0', '0', '0', '连衣裙', '300-600', 'default', 'desc', '20181030', '1540915071'), ('4', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915073'), ('5', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540915083'), ('6', '0', '0', '0', '连衣裙', '0-100', 'default', 'desc', '20181030', '1540915083'), ('7', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'desc', '20181030', '1540915094'), ('8', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'asc', '20181030', '1540915094'), ('9', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915096'), ('10', '0', '0', '0', '连衣裙', '300-600', 'sales_count', 'asc', '20181030', '1540915097'), ('11', '0', '0', '0', '连衣裙', '300-600', 'price', 'desc', '20181030', '1540915098'), ('12', '0', '0', '0', '连衣裙', '300-600', 'price', 'asc', '20181030', '1540915098'), ('13', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915099'), ('14', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915100'), ('15', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915101'), ('16', '0', '0', '0', '连衣裙', '100-300', 'default', 'asc', '20181030', '1540915101'), ('17', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915101'), ('18', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915102'), ('19', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915102'), ('20', '0', '0', '0', '连衣裙', '100-300', 'price', 'desc', '20181030', '1540915103'), ('21', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915103'), ('22', '0', '0', '0', '连衣裙', '', 'price', 'asc', '20181030', '1540915123'), ('23', '0', '0', '2', '', '', 'default', 'asc', '20181030', '1540915128'), ('24', '0', '2', '2', '', '', 'default', 'asc', '20181030', '1540915142'), ('25', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915145'), ('26', '0', '4', '305', '', '', 'default', 'asc', '20181030', '1540915147'), ('27', '0', '4', '304', '', '', 'default', 'asc', '20181030', '1540915148'), ('28', '0', '4', '310', '', '', 'default', 'asc', '20181030', '1540915151'), ('29', '0', '4', '308', '', '', 'default', 'asc', '20181030', '1540915152'), ('30', '0', '4', '189', '', '', 'default', 'asc', '20181030', '1540915153'), ('31', '0', '4', '191', '', '', 'default', 'asc', '20181030', '1540915154'), ('32', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915155'), ('33', '0', '4', '309', '', '', 'default', 'asc', '20181030', '1540915158'), ('34', '0', '4', '311', '', '', 'default', 'asc', '20181030', '1540915158'), ('35', '0', '4', '188', '', '', 'default', 'asc', '20181030', '1540915159'), ('36', '90', '0', '2', '', '', 'default', 'asc', '20181031', '1540915293'), ('37', '77', '0', '0', '小米', '', 'default', 'asc', '20181114', '1542173791'), ('38', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542184198'), ('39', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184466'), ('40', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184650'), ('41', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184688'), ('42', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184896'), ('43', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542184903'), ('44', '77', '0', '0', '', '', 'sales_count', 'asc', '20181114', '1542184908'), ('45', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185667'), ('46', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185701'), ('47', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185706'), ('48', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185727'), ('49', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185730'), ('50', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542185740'), ('51', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185862'), ('52', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185870'), ('53', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185873'), ('54', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185878'), ('55', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185879'), ('56', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185881'), ('57', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185931'), ('58', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185933'), ('59', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185934'), ('60', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185936'), ('61', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185956'), ('62', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185979'), ('63', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('64', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('65', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185986'), ('66', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185996'), ('67', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185997'), ('68', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185998'), ('69', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185999'), ('70', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186002'), ('71', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186044'), ('72', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542187732'), ('73', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189218'), ('74', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189248'), ('75', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189252'), ('76', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189502'), ('77', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189516'), ('78', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189526'), ('79', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252090'), ('80', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252092'), ('81', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252093'), ('82', '0', '0', '0', '', '', 'default', 'asc', '20181119', '1542592056'), ('83', '0', '0', '1', '', '', 'default', 'asc', '20181120', '1542647168'); COMMIT; -- ----------------------------