提交 4c4c22c8 编写于 作者: D devil_gong

新增商品详情展示相册

上级 0c9ebcf3
{{include file="public/header" /}}
<!-- right content start -->
<div class="content-right">
<div class="content">
<!-- table nav start -->
{{include file="site/nav" /}}
<!-- table nav end -->
<!-- form start -->
<form class="am-form form-validation view-save" action="{{:MyUrl('admin/site/save')}}" method="POST" request-type="ajax-url" request-value="{{:MyUrl('admin/site/index', ['nav_type'=>'goods'])}}" enctype="multipart/form-data">
<div class="am-form-group">
<label>{{$data.common_is_goods_detail_show_photo.name}}<span class="am-form-group-label-tips">{{$data.common_is_goods_detail_show_photo.describe}}</span></label>
<select name="{{$data.common_is_goods_detail_show_photo.only_tag}}" class="am-radius chosen-select" data-validation-message="{{$data.common_is_goods_detail_show_photo.error_tips}}" required>
{{foreach $common_is_text_list as $v}}
<option value="{{$v.id}}" {{if isset($data['common_is_goods_detail_show_photo']['value']) and $data['common_is_goods_detail_show_photo']['value'] eq $v['id']}}selected{{/if}}>{{$v.name}}</option>
{{/foreach}}
</select>
</div>
<div class="am-form-group am-form-group-refreshing">
<input type="hidden" name="nav_type" value="{{$nav_type}}" />
<button type="submit" class="am-btn am-btn-primary am-radius btn-loading-example am-btn-sm am-btn-block" data-am-loading="{loadingText:'处理中...'}">保存</button>
</div>
</form>
<!-- form end -->
</div>
</div>
<!-- right content end -->
<!-- footer start -->
{{include file="public/footer" /}}
<!-- footer end -->
\ No newline at end of file
......@@ -29,6 +29,9 @@
<li {{if $nav_type eq 'search'}}class="am-active"{{/if}} data-type="search">
<a href="{{:MyUrl('admin/site/index', ['nav_type'=>'search'])}}">搜索</a>
</li>
<li {{if $nav_type eq 'goods'}}class="am-active"{{/if}} data-type="goods">
<a href="{{:MyUrl('admin/site/index', ['nav_type'=>'goods'])}}">商品</a>
</li>
<li {{if $nav_type eq 'extends'}}class="am-active"{{/if}} data-type="extends">
<a href="{{:MyUrl('admin/site/index', ['nav_type'=>'extends'])}}">扩展项</a>
</li>
......
......@@ -129,6 +129,7 @@ class Goods extends Common
'common_app_is_poster_share' => (int) MyC('common_app_is_poster_share'),
'common_cart_total' => BuyService::UserCartTotal(['user'=>$this->user]),
'customer_service_tel' => MyC('common_app_customer_service_tel', null, true),
'common_is_goods_detail_show_photo' => MyC('common_is_goods_detail_show_photo', 0, true),
// 站点模式
'common_site_type' => (int) MyC('common_site_type', 0, true),
......
......@@ -132,6 +132,9 @@ class Goods extends Common
// 站点类型 - 展示型模式操作名称
$this->assign('common_is_exhibition_mode_btn_text', MyC('common_is_exhibition_mode_btn_text', '立即咨询', true));
// 是否商品详情页展示相册
$this->assign('common_is_goods_detail_show_photo', MyC('common_is_goods_detail_show_photo', 0, true));
return $this->fetch();
}
}
......
......@@ -485,12 +485,24 @@
</div>
{{/if}}
<!-- 详情内容 -->
<div class="details">
<div class="spacing-nav-title">
<span class="line"></span>
<span class="text-wrapper">商品细节</span>
</div>
<div class="detail-content">{{$goods.content_web|raw}}</div>
<div class="detail-content">
{{if isset($common_is_goods_detail_show_photo) and $common_is_goods_detail_show_photo eq 1 and !empty($goods.photo)}}
<div class="content-photo">
{{foreach $goods.photo as $photo}}
<li>
<img src="{{$photo.images}}" title="{{$goods.title}}" />
</li>
{{/foreach}}
</div>
{{/if}}
<div class="content-web">{{$goods.content_web|raw}}</div>
</div>
</div>
</div>
......
......@@ -11,7 +11,7 @@
Target Server Version : 50722
File Encoding : utf-8
Date: 11/28/2019 18:01:27 PM
Date: 12/02/2019 16:04:41 PM
*/
SET NAMES utf8mb4;
......@@ -40,7 +40,7 @@ CREATE TABLE `s_admin` (
-- Records of `s_admin`
-- ----------------------------
BEGIN;
INSERT INTO `s_admin` VALUES ('1', 'admin', 'fe590eccd2d83a3bbb6fdb711f9e4864', '493046', '17688888888', '0', '445', '1574661819', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039');
INSERT INTO `s_admin` VALUES ('1', 'admin', '90725b971a94dcfd641cc8fe9aa9a6a7', '268272', '17688888888', '0', '446', '1575253447', '1', '1481350313', '1551341520'), ('3', 'testtest', 'a3a3368a4a310b29cd6662e386a46b19', '580271', '13222333333', '2', '51', '1551341548', '13', '1483947758', '1561014039');
COMMIT;
-- ----------------------------
......@@ -286,7 +286,7 @@ CREATE TABLE `s_cart` (
KEY `goods_id` (`goods_id`),
KEY `title` (`title`),
KEY `stock` (`stock`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车';
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车';
-- ----------------------------
-- Records of `s_cart`
......@@ -310,13 +310,13 @@ CREATE TABLE `s_config` (
`upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `only_tag` (`only_tag`)
) ENGINE=MyISAM AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='基本配置参数';
) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='基本配置参数';
-- ----------------------------
-- Records of `s_config`
-- ----------------------------
BEGIN;
INSERT INTO `s_config` VALUES ('15', '10', '分页数量', '分页显示数量', '分页不能超过3位数', 'admin', 'admin_page_number', '1574662852'), ('59', '1', '扣减库存规则', '需扣减库存开启方可有效,默认订单支付成功', '', 'common', 'common_deduction_inventory_rules', '1574857322'), ('60', '1', '是否扣减库存', '建议不要随意修改,以免造成库存数据错乱,关闭不影响库存回滚', '', 'common', 'common_is_deduction_inventory', '1574857322'), ('11', '0', 'Excel编码', 'excel模块编码选择', '请选择编码', 'admin', 'admin_excel_charset', '1574662852'), ('16', 'ShopXO企业级B2C电商系统提供商 - 演示站点', '站点标题', '浏览器标题,一般不超过80个字符', '站点标题不能为空', 'home', 'home_seo_site_title', '1572944154'), ('17', '商城系统,开源电商系统,免费电商系统,PHP电商系统,商城系统,B2C电商系统,B2B2C电商系统', '站点关键字', '一般不超过100个字符,多个关键字以半圆角逗号 [ , ] 隔开', '站点关键字不能为空', 'home', 'home_seo_site_keywords', '1572944154'), ('18', 'ShopXO是国内领先的商城系统提供商,为企业提供php商城系统、微信商城、小程序。', '站点描述', '站点描述,一般不超过200个字符', '站点描述不能为空', 'home', 'home_seo_site_description', '1572944154'), ('19', '', 'ICP证书号', 'ICP域名备案号', '', 'home', 'home_site_icp', '1572944120'), ('20', '', '底部统计代码', '支持html,可用于添加流量统计代码', '', 'home', 'home_statistics_code', '0'), ('21', '1', '站点状态', '可暂时将站点关闭,其他人无法访问,但不影响管理员访问后台', '请选择站点状态', 'home', 'home_site_state', '1572432324'), ('22', '升级中...', '关闭原因', '支持html,当网站处于关闭状态时,关闭原因将显示在前台', '', 'home', 'home_site_close_reason', '1572432324'), ('23', 'Australia/Eucla', '默认时区', '默认 亚洲/上海 [标准时+8]', '请选择默认时区', 'common', 'common_timezone', '1572432324'), ('24', '', '底部代码', '支持html,可用于添加流量统计代码', '', 'home', 'home_footer_info', '1572432324'), ('28', 'ShopXO', '站点名称', '', '站点名称不能为空', 'home', 'home_site_name', '1572432324'), ('29', '0', '链接模式', '详情ThinkPHP官网5.1版本文档 [http://www.thinkphp.cn/]', '请选择url模式', 'home', 'home_seo_url_model', '1572944154'), ('25', '2048000', '图片最大限制', '单位B [上传图片还受到服务器空间PHP配置最大上传 20M 限制]', '请填写图片上传最大限制', 'home', 'home_max_limit_image', '1558074966'), ('26', '51200000', '文件最大限制', '单位B [上传文件还受到服务器空间PHP配置最大上传 20M 限制]', '请填写文件上传最大限制', 'home', 'home_max_limit_file', '1558074966'), ('27', '102400000', '视频最大限制', '单位B [上传视频还受到服务器空间PHP配置最大上传 20M 限制]', '请填写视频上传最大限制', 'home', 'home_max_limit_video', '1558074966'), ('30', 'html', '伪静态后缀', '链接后面的后缀别名,默认 [ html ]', '小写字母,不能超过8个字符', 'home', 'home_seo_url_html_suffix', '1572944154'), ('31', '0', '用户注册开启审核', '开启后用户注册需要审核通过方可登录', '请选择用户注册开启审核', 'common', 'common_register_is_enable_audit', '1566227415'), ('32', '/static/upload/images/common/2019/01/14/1547448748316693.png', '手机端logo', '支持 [jpg, png, gif]', '请上传手机端网站logo', 'home', 'home_site_logo_wap', '1572432324'), ('33', '/static/upload/images/common/2019/01/14/1547448705165706.png', '电脑端logo', '支持 [jpg, png, gif]', '请上传电脑端网站logo', 'home', 'home_site_logo', '1572432324'), ('34', '1200', '页面最大宽度', '页面最大宽度,单位px,0则100%', '请上传桌面图标', 'home', 'home_content_max_width', '1572432324'), ('35', '/static/upload/images/common/2019/01/14/1547448728921121.jpg', '桌面图标', '建议使用png格式', '图片比例值格式有误 0~100 之间,小数点后面最大两位', 'common', 'home_site_desktop_icon', '1572432324'), ('36', 'sms,email,username', '是否开启注册', '关闭注册后,前端站点将无法注册,可选择 [ 短信, 邮箱, 用户名 ]', '请选择是否开启注册状态', 'home', 'home_user_reg_state', '1566227415'), ('37', '1', '是否开启登录', '关闭后,前端站点将无法登录', '请选择是否开启登录状态', 'home', 'home_user_login_state', '1558084931'), ('38', '1', '获取验证码-开启图片验证码', '防止短信轰炸', '请选择是否开启强制图片验证码', 'home', 'home_img_verify_state', '1558085166'), ('39', '60', '获取验证码时间间隔', '防止频繁获取验证码,一般在 30~120 秒之间,单位 [秒]', '请填写获取验证码时间间隔', 'home', 'common_verify_time_interval', '1558085166'), ('40', '', '用户注册-短信模板ID', '验证码code', '请填写用户注册短信模板内容', 'home', 'home_sms_user_reg', '1572839329'), ('41', '', '短信签名', '发送短信包含的签名', '短信签名 3~8 个的中英文字符', 'common', 'common_sms_sign', '1572839324'), ('42', '', '短信KeyID', 'Access Key ID', '请填写Access Key ID', 'common', 'common_sms_apikey', '1572839324'), ('43', '', '密码找回-短信模板ID', '验证码code', '请填写密码找回短信模板内容', 'home', 'home_sms_user_forget_pwd', '1572839329'), ('44', '600', '验证码有效时间', '验证码过期时间,一般10分钟左右,单位 [秒]', '请填写验证码有效时间', 'home', 'common_verify_expire_time', '1558085166'), ('45', '', 'SMTP服务器', '设置SMTP服务器的地址,如 smtp.163.com', '请填写SMTP服务器', 'common', 'common_email_smtp_host', '1566227590'), ('46', '', 'SMTP端口', '设置SMTP服务器的端口,默认为 25', '请填写SMTP端口号', 'common', 'common_email_smtp_port', '1566227590'), ('47', '', '发信人邮件地址', '发信人邮件地址,使用SMTP协议发送的邮件地址,如 shopxo@163.com', '请填写发信人邮件地址', 'common', 'common_email_smtp_account', '1566227590'), ('48', '', 'SMTP身份验证用户名', '如 ShopXO', '请填写SMTP身份验证用户名', 'common', 'common_email_smtp_name', '1566227590'), ('49', '', 'SMTP身份验证密码', 'shopxo@163.com邮件的密码', '请填写SMTP身份验证密码', 'common', 'common_email_smtp_pwd', '1566227590'), ('50', 'ShopXO', '发件人显示名称', '如 ShopXO', '', 'common', 'common_email_smtp_send_name', '1566227590'), ('51', '', '通用-短信模板ID', '验证码code', '请填写通用短信模板内容', 'common', 'common_sms_currency_template', '1572839329'), ('58', '', '短信KeySecret', 'Access Key Secret', '请填写Access Key Secret', 'common', 'common_sms_apisecret', '1572839324'), ('53', '021-88888888', '商店电话', '空则不显示', '', 'common', 'common_customer_store_tel', '1573640974'), ('56', '<p>通用模板,你的验证码是&nbsp;&nbsp;#code#</p>', '通用-邮件模板', '验证码变量标识符 [ #code# ]', '', 'common', 'common_email_currency_template', '1557728601'), ('57', 'default', '默认模板', '前台默认模板', '请填写默认模板', 'common', 'common_default_theme', '1550113393'), ('62', 'XSdiGjfg3wOHiKjpYEMG6CYA', '百度地图api密钥', '百度地图api密钥', '请填写百度地图api密钥', 'common', 'common_baidu_map_ak', '1574662852'), ('63', '<p>用户注册,你的验证码是&nbsp;&nbsp;#code#</p>', '用户注册-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_reg', '1557728601'), ('64', '<p>密码找回,你的验证码是&nbsp;&nbsp;#code#</p>', '密码找回-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_forget_pwd', '1557728601'), ('65', '<p style=\"white-space: normal;\">邮箱绑定,你的验证码是&nbsp;&nbsp;#code#</p>', '邮箱绑定-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_email_binding', '1557728601'), ('66', '20190820', 'css/js版本标记', '用于css/js浏览器缓存版本识别', '', 'home', 'home_static_cache_version', '1572432324'), ('67', '', '手机号码绑定-短信模板ID', '验证码code', '请填写手机号码绑定短信模板内容', 'home', 'home_sms_user_mobile_binding', '1572839329'), ('68', '连衣裙,帐篷,iphone,包包', '搜索关键字', '搜索框下热门关键字(输入回车)', '请填写关键字', 'home', 'home_search_keywords', '1566227458'), ('69', '2', '搜索关键字类型', '自定义需要配置以下关键字', '请选择关键字类型', 'home', 'home_search_keywords_type', '1566227458'), ('70', '0', '订单预约模式', '开启后用户提交订单需要管理员确认', '请选择是否开启预约模式', 'common', 'common_order_is_booking', '1574857322'), ('71', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_alipay_title', '1574821203'), ('72', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_alipay_describe', '1574821203'), ('73', '021-88888888', '客服电话', '', '请填写客服电话', 'common', 'common_app_customer_service_tel', '1566470981'), ('74', '2019081966311589', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_alipay_appid', '1574821202'), ('75', 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuxAXbZitfaALDaevrWVITveMu2fh3L8t3p/5WGPNEVOqCnL3v8EeYZWOLSuBHhpJaLb7Q3HrPWynzpcJ2C17+DxCVS3Js8J/iAgiJGJB4f8wZuPBwqKncGXdrAtN6EYp3H9K1IQeCmGN9di4Ht7igDDREnVWrUIc1Q6O64KDg8YLhWaTf2FMFvdPKiH9tijIZuvtYxxOUkHmgG6N7+IIvKPLdYde0dt/eTy6L1wbXSWoStfmFYd38vywt51N6AlChh/XAQmUGYTq1sW+PFXg2MrDyyWIEZxGb1dINhlMgXMqxTropo31kXa09vUffNvPWVmR38iT9lY+n6ZWSVzH3QIDAQAB', '应用公钥', '', '请填写应用公钥', 'common', 'common_app_mini_alipay_rsa_public', '1574821202'), ('76', 'MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC7EBdtmK19oAsNp6+tZUhO94y7Z+Hcvy3en/lYY80RU6oKcve/wR5hlY4tK4EeGklotvtDces9bKfOlwnYLXv4PEJVLcmzwn+ICCIkYkHh/zBm48HCoqdwZd2sC03oRincf0rUhB4KYY312Lge3uKAMNESdVatQhzVDo7rgoODxguFZpN/YUwW908qIf22KMhm6+1jHE5SQeaAbo3v4gi8o8t1h17R2395PLovXBtdJahK1+YVh3fy/LC3nU3oCUKGH9cBCZQZhOrWxb48VeDYysPLJYgRnEZvV0g2GUyBcyrFOuimjfWRdrT29R98289ZWZHfyJP2Vj6fplZJXMfdAgMBAAECggEAXXHCYkscj169ZsrXZUTtBBWBRbS1DTKrVUSQqGjibb9fd+zKeg2cgZ7V8RaEX2c+OIL/rUdg/cQjZ33nuwetn+lqMWa4FYYZcvitJYO36Y8yvJMVnYbnIayhOWpENr2l97HWzaZZ41GsOp1SDInGl8bLCe93pwEZqgyltFv0GoSfNu3trFFxPZgZJalV0t5M7+RchutkHskwrwI9BdnCJs38lh08jHHppQdkgcpyCiCdu/b4f+n9z97Op5Va8WY1M+wwqRk76Ias8mqwJXT/+t/sXhqkMv1ylAb89+b3rgiOU7KlZMpIAercW/ZRojnDjpY9ViaCxwWPwb/VkPrDgQKBgQDkDuie0DAIDP5C74dPj/Z0mapsU9bKlcgC+nowEUaEO7A9cwMVFal0x9p7BKIJsV2b6d1qJGP7rM9YtRMldJQmuxPcHOKPcZR8pGLqFYT2QGKGurohb/o+btGda/SGwJfi6jwQUF0AE+1k+Dj9P3hDxHgkj6ZMkHEBtqUj520VTQKBgQDR+1rPPex8zTQgl9uSY0hlXPyYEhpXicNhzyet1Su+TV8wdGNUr2YeuDHEu6oiRocBaT8DEwpy9EToe56EK3Ht2AQ76NBSUp9EOl1twocebM42etJSJZGpB1AgP+R/hmUbcBPXEwXdy5XeYnYmpVUcoizzKrnRDxg3TRF3kIX00QKBgGc49EMFmefa8a6cOdNiJrvp3YBAhkSVfL0UX/+nohIx7fgyOV/uuQ9ZceMiWrEmbWcneAcVx4dfVU4iTzMxy+in3jpPfKBOWVX9FaQ77z2CMNYoaBzAUTS29ftZpIjlXRngySTdKurhGh8MVscRVj7eCz8JIc0fx3ZuE9rnYbE1AoGAJoqJL3LBPmL3x2e4IJVii2BW6J6iASFDIGfCc7Cl18chyqYCOV/8UXUjhWWgo6voScUEkM7k4xacs0NFZCMJRUuZ81kXK5UIsKA519SVsmrsKqm+gt9sbebuuQyhJxsG4dNfgOF3+S7N8kSGRS+hgKDvuS5Fbu7jVfsqUpTPUZECgYAcbq3mqWwExY2Kn0I660OqOFk620pGsSY7gECUQintCZioYemzC1TN9pM6fKnOIYriV4Ou7iswhEfVX+5bwMjH2ujmu8KDdpkpdhRoFCw3GUn/PDelQrptaKkKXnOIJe/R8m+TUxYCtECTlKlYS4hTst7YhTDz5sQHcXRtveATZQ==', '应用私钥', '', '请填写应用私钥', 'common', 'common_app_mini_alipay_rsa_private', '1574821203'), ('78', '1', '是否启用搜索', '', '', 'common', 'common_app_is_enable_search', '1574854442'), ('77', 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkwpOGFOJ0GF6vN9k2dih7Up4+0qecYGtGeZMLdkArDMQ3vgvZFyjAM8c6uFRCHfVoUF5mflVVskLaXMH9C3VY80fxE40WM3VXVW+z0M+WFdihmfB6m/xKpN0QkMVEce7yb7AyXAdNA20KKyjVKXAnDGU3nGc6grQ6uzNIp/Eb8jMPv91GOjzY8KYOxgSiVVM9p5Y1NedGBTQGeMWcRH5vi9ys2Ia0KDYtxuXDhIxMDAqrCNy5sODh0DUpTL+Di09jQRmdI9JNN79ibVmrBoU7ud8YbL/lR4iVT+zF848+OmJiK56yTLcxY8vrU2kGlGO2K8jKWDsOK93H0GF/+lA+wIDAQAB', '支付宝公钥', '', '请填写支付宝公钥', 'common', 'common_app_mini_alipay_out_rsa_public', '1574821203'), ('79', '1', '是否启用留言', '', '', 'common', 'common_app_is_enable_answer', '1574854442'), ('80', '3', '商品可添加规格最大数量', '建议不超过3个规格', '请填写谷歌最大数', 'common', 'common_spec_add_max_number', '1574662852'), ('81', '-', '路由分隔符', '建议填写 [ - ] 默认 [ - ] ,仅PATHINFO模式+短地址模式下有效', '请填写路由分隔符', 'common', 'common_route_separator', '1572944154'), ('82', 'wx0a2012ebad94beff', 'AppID', '小程序ID', '请填写appid', 'common', 'common_app_mini_weixin_appid', '1574661832'), ('83', 'd0e4e81180ea59b8fcc4299f6b05b362', 'AppSecret ', '小程序密钥', '请填写appsecret', 'common', 'common_app_mini_weixin_appsecret', '1574661832'), ('84', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_weixin_title', '1574661832'), ('85', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_weixin_describe', '1574661832'), ('61', '用户中心公告文字,后台配置修改。', '用户中心公告', '空则不显示公告', '', 'common', 'common_user_center_notice', '1566470981'), ('8', '公告内容而已', '商城公告', '空则不显示公告', '', 'common', 'common_shop_notice', '1566470981'), ('86', 'test@qq.com', '商店邮箱', '空则不显示', '客服邮箱格式有误', 'common', 'common_customer_store_email', '1573640974'), ('87', '', '商店二维码', '空则不展示', '', 'common', 'common_customer_store_qrcode', '1574662852'), ('152', '[{\"alias\":\"总部\",\"name\":\"devil55\",\"tel\":\"13222333333\",\"lng\":\"121.594278\",\"lat\":\"31.207917\",\"address\":\"张江高科\",\"province\":\"9\",\"city\":\"155\",\"county\":\"1937\",\"province_name\":\"上海市\",\"city_name\":\"浦东新区\",\"county_name\":\"张江镇\",\"id\":\"0\"},{\"alias\":\"三里屯自提点\",\"name\":\"sky\",\"tel\":\"021-88888888\",\"lng\":\"116.446432\",\"lat\":\"39.927859\",\"address\":\"优衣库\",\"province\":\"1\",\"city\":\"41\",\"county\":\"599\",\"province_name\":\"北京市\",\"city_name\":\"朝阳区\",\"county_name\":\"三里屯街道\",\"id\":\"1\"}]', '自提点地址', '', '请填写自提点地址', 'common', 'common_self_extraction_address', '1574857322'), ('88', '上海市 浦东新区', '商店地址', '空则不展示', '', 'common', 'common_customer_store_address', '1573640974'), ('89', '<p>用户注册协议</p><p><br/></p>', '用户注册协议', '最多 105000 个字符', '用户注册协议最多 105000 个字符', 'common', 'common_agreement_userregister', '1566227622'), ('90', '/static/upload/images/common/2019/05/17/1558025141249118.png', '用户注册背景图片', '', '请上传用户注册背景图片', 'home', 'home_site_user_register_bg_images', '1566227415'), ('91', '/static/upload/images/common/2019/05/17/1558062481107570.jpg', '图片', '图片1 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad1_images', '1558084931'), ('92', '/static/upload/images/common/2019/05/17/1558072588843696.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad2_images', '1558084931'), ('93', '/static/upload/images/common/2019/05/17/1558073623385520.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad3_images', '1558084931'), ('94', 'https://shopxo.net/', 'url地址', '地址1 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad1_url', '1558084931'), ('95', 'https://ask.shopxo.net/', 'url地址', '地址2 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad2_url', '1558084931'), ('96', 'https://shopxo.net/vip.html', 'url地址', '地址3 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad3_url', '1558084931'), ('97', '', '背景色', '背景色1', '', 'home', 'home_site_user_login_ad1_bg_color', '1558084931'), ('98', '#FAFAFA', '背景色', '背景色2', '', 'home', 'home_site_user_login_ad2_bg_color', '1558084931'), ('99', '#FAFAFA', '背景色', '背景色3', '', 'home', 'home_site_user_login_ad3_bg_color', '1558084931'), ('100', '1', '登录图片验证码', '可以防止非法登录', '请选择是否开启登录图片验证码', 'home', 'home_user_login_img_verify_state', '1558084931'), ('101', '/static/upload/images/common/2019/05/17/1558072588843696.jpg', '图片', '图片1 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad1_images', '1558084915'), ('102', '/static/upload/images/common/2019/05/17/1558073623641199.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad2_images', '1558084915'), ('103', '', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad3_images', '1558084915'), ('104', 'https://shopxo.net/', 'url地址', '地址1 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad1_url', '1558084915'), ('105', '', 'url地址', '地址2 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad2_url', '1558084915'), ('106', '', 'url地址', '地址3 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad3_url', '1558084915'), ('107', '#FAFAFA', '背景色', '背景色1', '', 'home', 'home_site_user_forgetpwd_ad1_bg_color', '1558084915'), ('108', '#FAFAFA', '背景色', '背景色2', '', 'home', 'home_site_user_forgetpwd_ad2_bg_color', '1558084915'), ('109', '', '背景色', '背景色3', '', 'home', 'home_site_user_forgetpwd_ad3_bg_color', '1558084915'), ('110', '1', '用户注册图片验证码', '可以防止非法注册', '请选择是否开启用户注册图片验证码', 'home', 'home_user_register_img_verify_state', '1566227415'), ('111', '', '图片验证码规则', '默认白底黑字,可根据需求i加大验证码识别难度', '', 'common', 'common_images_verify_rules', '1558085166'), ('112', '1', 'SSL方式加密', '', '请选择是否使用SSL方式加密', 'common', 'common_email_is_use_ssl', '1566227590'), ('113', '活动/优惠未生效\n空包裹\n包裹丢失\n配送超时\n未按约定时间发货\n未送货上门\n物流显示签收但实际未收到货\n不喜欢/不想要', '仅退款原因', '可换行,一行一个', '请填写仅退款原因', 'home', 'home_order_aftersale_return_only_money_reason', '1570193301'), ('114', '7天无理由退换货\n配送超时\n未按约定时间发货\n未送货上门\n卖家发错货\n少件/漏发\n包装/商品破损/污渍\n商品信息描述不符\n使用后过敏\n已过/临近保质期\n无法溶解/结块/有异物', '退货退款原因', '可换行,一行一个', '请填写退货退款原因', 'home', 'home_order_aftersale_return_money_goods_reason', '1570193301'), ('115', '1', '用户注册协议', '', '请选择是否启用用户注册协议', 'home', 'home_is_enable_userregister_agreement', '1566227415'), ('116', '上海市 浦东新区', '退货地址', '用户退货货物收货地址', '请填写退货地址', 'home', 'home_order_aftersale_return_goods_address', '1570193301'), ('117', '0', '使用独立手机详情', '默认使用web详情', '请选择使用独立手机详情', 'common', 'common_app_is_use_mobile_detail', '1574854442'), ('118', '0', '强制绑定手机', '默认否', '请选择是否强制绑定手机', 'common', 'common_user_is_mandatory_bind_mobile', '1574854442'), ('119', '1', '关闭web站底部信息', '默认否', '请选择是否关闭web站底部信息', 'common', 'common_is_app_inside_close_footer', '1574854442'), ('120', '1', '关闭web站头部信息', '默认否', '请选择是否关闭web站头部信息', 'common', 'common_is_app_inside_close_header', '1574854442'), ('121', '0', '固定顶部导航', '默认否', '请选择是否固定顶部导航', 'common', 'common_app_is_header_nav_fixed', '1574854442'), ('122', '1', '开启在线客服', '默认否', '请选择是否开启在线客服', 'common', 'common_app_is_online_service', '1574854442'), ('123', '0', '启用限时秒杀', '默认否', '请选择是否启用限时秒杀', 'common', 'common_app_is_limitedtimediscount', '1574854442'), ('124', '0', '启用好物推荐', '默认否,需重新生成小程序包(启用则需到微信小程序后台申请权限)', '请选择是否启用好物推荐', 'common', 'common_app_is_good_thing', '1572944201'), ('125', '16634987', 'AppID', '智能小程序ID', '请填写AppID', 'common', 'common_app_mini_baidu_appid', '1574855229'), ('126', 'C9Gg744cBqQ3zvbC5uOPMg9yWpmuQ8O7', 'AppKey', '智能小程序KEY', '请填写AppKey', 'common', 'common_app_mini_baidu_appkey', '1574855229'), ('127', 'KmdPEyuSAXcbiouKVq6LOSUjctZpxmNb', 'AppSecret', '智能小程序密匙', '请填写AppSecret', 'common', 'common_app_mini_baidu_appsecret', '1574855229'), ('128', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_baidu_title', '1574855229'), ('129', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_baidu_describe', '1574855229'), ('130', '0', '留言需要登录', '默认否', '请选择是否留言需要登录', 'common', 'common_is_login_answer', '1566124965'), ('131', '0', '启用海报分享', '默认否\n', '请选择是否启用海报分享\n', 'common', 'common_app_is_poster_share', '1572944201'), ('132', '30', '订单关闭脚本时长', '单位 分钟,默认30分钟', '请填写订单关闭脚本时长', 'common', 'common_order_close_limit_time', '1566124965'), ('133', '21600', '订单自动收货脚本时长', '单位 分钟,默认21600分钟/15天', '请填写订单自动收货脚本时长', 'common', 'common_order_success_limit_time', '1566124965'), ('134', '', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_toutiao_appid', '1572839259'), ('135', '', 'AppSecret', '小程序Secret', '请填写AppSecret', 'common', 'common_app_mini_toutiao_appsecret', '1572839259'), ('136', '', 'PayMerchantID', '支付商户号', '请填写支付商户号', 'common', 'common_app_mini_toutiao_pay_merchant_id', '1572839259'), ('137', '', 'PayAppID', '支付AppID', '请填写AppID', 'common', 'common_app_mini_toutiao_pay_appid', '1572839259'), ('138', '', 'PaySecret', '支付Secret', '请填写支付Secret', 'common', 'common_app_mini_toutiao_pay_secret', '1572839259'), ('139', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_toutiao_title', '1572839259'), ('140', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_toutiao_describe', '1572839259'), ('141', '', '公安备案号', '如:京公网安备xxx号', '请填写公安备案号', 'home', 'home_site_security_record_name', '1572944120'), ('142', '', '公安备案地址', '备案展示页面的url地址', '请填写公安备案地址', 'home', 'home_site_security_record_url', '1572944120'), ('143', '', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_qq_appid', '1572944224'), ('144', '', 'AppSecret', '小程序Secret', '请填写AppSecret', 'common', 'common_app_mini_qq_appsecret', '1572944224'), ('145', '', 'AppToken', '小程序Token', '请填写AppToken', 'common', 'common_app_mini_qq_apptoken', '1572944224'), ('146', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_qq_title', '1572944224'), ('147', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_qq_describe', '1572944224'), ('148', '0', '是否启用用户中心头部小导航', '默认否', '请选择是否启用用户中心头部小导航', 'common', 'common_app_is_head_vice_nav', '1574854442'), ('151', '3', '站点类型', '默认销售型', '请选择站点类型', 'common', 'common_site_type', '1574857322'), ('150', '', '展示型操作名称', '默认 立即咨询', '请填写展示型操作名称', 'common', 'common_is_exhibition_mode_btn_text', '1574857322'), ('153', '', '虚拟信息标题', '默认密钥信息', '请填写虚拟信息标题', 'common', 'common_site_fictitious_return_title', '1574857322'), ('154', '', '提示信息', '', '请填写提示信息', 'common', 'common_site_fictitious_return_tips', '1574857322'), ('155', 'KXJLMYCN', '在线客服-企业编码', '空则不显示在线客服', '请填写在线客服-企业编码', 'common', 'common_app_mini_alipay_tnt_inst_id', '1574848356'), ('156', 'SCE00004954', '在线客服-聊天窗编码', '空则不显示在线客服', '请填写在线客服-聊天窗编码', 'common', 'common_app_mini_alipay_scene', '1574848356');
INSERT INTO `s_config` VALUES ('15', '10', '分页数量', '分页显示数量', '分页不能超过3位数', 'admin', 'admin_page_number', '1574662852'), ('59', '1', '扣减库存规则', '需扣减库存开启方可有效,默认订单支付成功', '', 'common', 'common_deduction_inventory_rules', '1575257539'), ('60', '1', '是否扣减库存', '建议不要随意修改,以免造成库存数据错乱,关闭不影响库存回滚', '', 'common', 'common_is_deduction_inventory', '1575257539'), ('11', '0', 'Excel编码', 'excel模块编码选择', '请选择编码', 'admin', 'admin_excel_charset', '1574662852'), ('16', 'ShopXO企业级B2C电商系统提供商 - 演示站点', '站点标题', '浏览器标题,一般不超过80个字符', '站点标题不能为空', 'home', 'home_seo_site_title', '1572944154'), ('17', '商城系统,开源电商系统,免费电商系统,PHP电商系统,商城系统,B2C电商系统,B2B2C电商系统', '站点关键字', '一般不超过100个字符,多个关键字以半圆角逗号 [ , ] 隔开', '站点关键字不能为空', 'home', 'home_seo_site_keywords', '1572944154'), ('18', 'ShopXO是国内领先的商城系统提供商,为企业提供php商城系统、微信商城、小程序。', '站点描述', '站点描述,一般不超过200个字符', '站点描述不能为空', 'home', 'home_seo_site_description', '1572944154'), ('19', '', 'ICP证书号', 'ICP域名备案号', '', 'home', 'home_site_icp', '1572944120'), ('20', '', '底部统计代码', '支持html,可用于添加流量统计代码', '', 'home', 'home_statistics_code', '0'), ('21', '1', '站点状态', '可暂时将站点关闭,其他人无法访问,但不影响管理员访问后台', '请选择站点状态', 'home', 'home_site_state', '1572432324'), ('22', '升级中...', '关闭原因', '支持html,当网站处于关闭状态时,关闭原因将显示在前台', '', 'home', 'home_site_close_reason', '1572432324'), ('23', 'Australia/Eucla', '默认时区', '默认 亚洲/上海 [标准时+8]', '请选择默认时区', 'common', 'common_timezone', '1572432324'), ('24', '', '底部代码', '支持html,可用于添加流量统计代码', '', 'home', 'home_footer_info', '1572432324'), ('28', 'ShopXO', '站点名称', '', '站点名称不能为空', 'home', 'home_site_name', '1572432324'), ('29', '0', '链接模式', '详情ThinkPHP官网5.1版本文档 [http://www.thinkphp.cn/]', '请选择url模式', 'home', 'home_seo_url_model', '1572944154'), ('25', '2048000', '图片最大限制', '单位B [上传图片还受到服务器空间PHP配置最大上传 20M 限制]', '请填写图片上传最大限制', 'home', 'home_max_limit_image', '1558074966'), ('26', '51200000', '文件最大限制', '单位B [上传文件还受到服务器空间PHP配置最大上传 20M 限制]', '请填写文件上传最大限制', 'home', 'home_max_limit_file', '1558074966'), ('27', '102400000', '视频最大限制', '单位B [上传视频还受到服务器空间PHP配置最大上传 20M 限制]', '请填写视频上传最大限制', 'home', 'home_max_limit_video', '1558074966'), ('30', 'html', '伪静态后缀', '链接后面的后缀别名,默认 [ html ]', '小写字母,不能超过8个字符', 'home', 'home_seo_url_html_suffix', '1572944154'), ('31', '0', '用户注册开启审核', '开启后用户注册需要审核通过方可登录', '请选择用户注册开启审核', 'common', 'common_register_is_enable_audit', '1566227415'), ('32', '/static/upload/images/common/2019/01/14/1547448748316693.png', '手机端logo', '支持 [jpg, png, gif]', '请上传手机端网站logo', 'home', 'home_site_logo_wap', '1572432324'), ('33', '/static/upload/images/common/2019/01/14/1547448705165706.png', '电脑端logo', '支持 [jpg, png, gif]', '请上传电脑端网站logo', 'home', 'home_site_logo', '1572432324'), ('34', '1200', '页面最大宽度', '页面最大宽度,单位px,0则100%', '请上传桌面图标', 'home', 'home_content_max_width', '1572432324'), ('35', '/static/upload/images/common/2019/01/14/1547448728921121.jpg', '桌面图标', '建议使用png格式', '图片比例值格式有误 0~100 之间,小数点后面最大两位', 'common', 'home_site_desktop_icon', '1572432324'), ('36', 'sms,email,username', '是否开启注册', '关闭注册后,前端站点将无法注册,可选择 [ 短信, 邮箱, 用户名 ]', '请选择是否开启注册状态', 'home', 'home_user_reg_state', '1566227415'), ('37', '1', '是否开启登录', '关闭后,前端站点将无法登录', '请选择是否开启登录状态', 'home', 'home_user_login_state', '1558084931'), ('38', '1', '获取验证码-开启图片验证码', '防止短信轰炸', '请选择是否开启强制图片验证码', 'home', 'home_img_verify_state', '1558085166'), ('39', '60', '获取验证码时间间隔', '防止频繁获取验证码,一般在 30~120 秒之间,单位 [秒]', '请填写获取验证码时间间隔', 'home', 'common_verify_time_interval', '1558085166'), ('40', 'SMS_141025013', '用户注册-短信模板ID', '验证码code', '请填写用户注册短信模板内容', 'home', 'home_sms_user_reg', '1575030302'), ('41', '车路里', '短信签名', '发送短信包含的签名', '短信签名 3~8 个的中英文字符', 'common', 'common_sms_sign', '1575030284'), ('42', 'LTAIt6MfKVO4l11m', '短信KeyID', 'Access Key ID', '请填写Access Key ID', 'common', 'common_sms_apikey', '1575030284'), ('43', 'SMS_141025009', '密码找回-短信模板ID', '验证码code', '请填写密码找回短信模板内容', 'home', 'home_sms_user_forget_pwd', '1575030302'), ('44', '600', '验证码有效时间', '验证码过期时间,一般10分钟左右,单位 [秒]', '请填写验证码有效时间', 'home', 'common_verify_expire_time', '1558085166'), ('45', '', 'SMTP服务器', '设置SMTP服务器的地址,如 smtp.163.com', '请填写SMTP服务器', 'common', 'common_email_smtp_host', '1566227590'), ('46', '', 'SMTP端口', '设置SMTP服务器的端口,默认为 25', '请填写SMTP端口号', 'common', 'common_email_smtp_port', '1566227590'), ('47', '', '发信人邮件地址', '发信人邮件地址,使用SMTP协议发送的邮件地址,如 shopxo@163.com', '请填写发信人邮件地址', 'common', 'common_email_smtp_account', '1566227590'), ('48', '', 'SMTP身份验证用户名', '如 ShopXO', '请填写SMTP身份验证用户名', 'common', 'common_email_smtp_name', '1566227590'), ('49', '', 'SMTP身份验证密码', 'shopxo@163.com邮件的密码', '请填写SMTP身份验证密码', 'common', 'common_email_smtp_pwd', '1566227590'), ('50', 'ShopXO', '发件人显示名称', '如 ShopXO', '', 'common', 'common_email_smtp_send_name', '1566227590'), ('51', 'SMS_141025008', '通用-短信模板ID', '验证码code', '请填写通用短信模板内容', 'common', 'common_sms_currency_template', '1575030302'), ('58', '5SL7uS3w3HlEWEcaOEgQareDMddxwK', '短信KeySecret', 'Access Key Secret', '请填写Access Key Secret', 'common', 'common_sms_apisecret', '1575030284'), ('53', '021-88888888', '商店电话', '空则不显示', '', 'common', 'common_customer_store_tel', '1573640974'), ('56', '<p>通用模板,你的验证码是&nbsp;&nbsp;#code#</p>', '通用-邮件模板', '验证码变量标识符 [ #code# ]', '', 'common', 'common_email_currency_template', '1557728601'), ('57', 'default', '默认模板', '前台默认模板', '请填写默认模板', 'common', 'common_default_theme', '1550113393'), ('62', 'XSdiGjfg3wOHiKjpYEMG6CYA', '百度地图api密钥', '百度地图api密钥', '请填写百度地图api密钥', 'common', 'common_baidu_map_ak', '1574662852'), ('63', '<p>用户注册,你的验证码是&nbsp;&nbsp;#code#</p>', '用户注册-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_reg', '1557728601'), ('64', '<p>密码找回,你的验证码是&nbsp;&nbsp;#code#</p>', '密码找回-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_forget_pwd', '1557728601'), ('65', '<p style=\"white-space: normal;\">邮箱绑定,你的验证码是&nbsp;&nbsp;#code#</p>', '邮箱绑定-邮件模板', '验证码变量标识符 [ #code# ]', '', 'home', 'home_email_user_email_binding', '1557728601'), ('66', '20190820', 'css/js版本标记', '用于css/js浏览器缓存版本识别', '', 'home', 'home_static_cache_version', '1572432324'), ('67', 'SMS_164795061', '手机号码绑定-短信模板ID', '验证码code', '请填写手机号码绑定短信模板内容', 'home', 'home_sms_user_mobile_binding', '1575030302'), ('68', '连衣裙,帐篷,iphone,包包', '搜索关键字', '搜索框下热门关键字(输入回车)', '请填写关键字', 'home', 'home_search_keywords', '1566227458'), ('69', '2', '搜索关键字类型', '自定义需要配置以下关键字', '请选择关键字类型', 'home', 'home_search_keywords_type', '1566227458'), ('70', '0', '订单预约模式', '开启后用户提交订单需要管理员确认', '请选择是否开启预约模式', 'common', 'common_order_is_booking', '1575257539'), ('71', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_alipay_title', '1574821203'), ('72', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_alipay_describe', '1574821203'), ('73', '021-88888888', '客服电话', '', '请填写客服电话', 'common', 'common_app_customer_service_tel', '1566470981'), ('74', '2019081966311589', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_alipay_appid', '1574821202'), ('75', 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuxAXbZitfaALDaevrWVITveMu2fh3L8t3p/5WGPNEVOqCnL3v8EeYZWOLSuBHhpJaLb7Q3HrPWynzpcJ2C17+DxCVS3Js8J/iAgiJGJB4f8wZuPBwqKncGXdrAtN6EYp3H9K1IQeCmGN9di4Ht7igDDREnVWrUIc1Q6O64KDg8YLhWaTf2FMFvdPKiH9tijIZuvtYxxOUkHmgG6N7+IIvKPLdYde0dt/eTy6L1wbXSWoStfmFYd38vywt51N6AlChh/XAQmUGYTq1sW+PFXg2MrDyyWIEZxGb1dINhlMgXMqxTropo31kXa09vUffNvPWVmR38iT9lY+n6ZWSVzH3QIDAQAB', '应用公钥', '', '请填写应用公钥', 'common', 'common_app_mini_alipay_rsa_public', '1574821202'), ('76', 'MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC7EBdtmK19oAsNp6+tZUhO94y7Z+Hcvy3en/lYY80RU6oKcve/wR5hlY4tK4EeGklotvtDces9bKfOlwnYLXv4PEJVLcmzwn+ICCIkYkHh/zBm48HCoqdwZd2sC03oRincf0rUhB4KYY312Lge3uKAMNESdVatQhzVDo7rgoODxguFZpN/YUwW908qIf22KMhm6+1jHE5SQeaAbo3v4gi8o8t1h17R2395PLovXBtdJahK1+YVh3fy/LC3nU3oCUKGH9cBCZQZhOrWxb48VeDYysPLJYgRnEZvV0g2GUyBcyrFOuimjfWRdrT29R98289ZWZHfyJP2Vj6fplZJXMfdAgMBAAECggEAXXHCYkscj169ZsrXZUTtBBWBRbS1DTKrVUSQqGjibb9fd+zKeg2cgZ7V8RaEX2c+OIL/rUdg/cQjZ33nuwetn+lqMWa4FYYZcvitJYO36Y8yvJMVnYbnIayhOWpENr2l97HWzaZZ41GsOp1SDInGl8bLCe93pwEZqgyltFv0GoSfNu3trFFxPZgZJalV0t5M7+RchutkHskwrwI9BdnCJs38lh08jHHppQdkgcpyCiCdu/b4f+n9z97Op5Va8WY1M+wwqRk76Ias8mqwJXT/+t/sXhqkMv1ylAb89+b3rgiOU7KlZMpIAercW/ZRojnDjpY9ViaCxwWPwb/VkPrDgQKBgQDkDuie0DAIDP5C74dPj/Z0mapsU9bKlcgC+nowEUaEO7A9cwMVFal0x9p7BKIJsV2b6d1qJGP7rM9YtRMldJQmuxPcHOKPcZR8pGLqFYT2QGKGurohb/o+btGda/SGwJfi6jwQUF0AE+1k+Dj9P3hDxHgkj6ZMkHEBtqUj520VTQKBgQDR+1rPPex8zTQgl9uSY0hlXPyYEhpXicNhzyet1Su+TV8wdGNUr2YeuDHEu6oiRocBaT8DEwpy9EToe56EK3Ht2AQ76NBSUp9EOl1twocebM42etJSJZGpB1AgP+R/hmUbcBPXEwXdy5XeYnYmpVUcoizzKrnRDxg3TRF3kIX00QKBgGc49EMFmefa8a6cOdNiJrvp3YBAhkSVfL0UX/+nohIx7fgyOV/uuQ9ZceMiWrEmbWcneAcVx4dfVU4iTzMxy+in3jpPfKBOWVX9FaQ77z2CMNYoaBzAUTS29ftZpIjlXRngySTdKurhGh8MVscRVj7eCz8JIc0fx3ZuE9rnYbE1AoGAJoqJL3LBPmL3x2e4IJVii2BW6J6iASFDIGfCc7Cl18chyqYCOV/8UXUjhWWgo6voScUEkM7k4xacs0NFZCMJRUuZ81kXK5UIsKA519SVsmrsKqm+gt9sbebuuQyhJxsG4dNfgOF3+S7N8kSGRS+hgKDvuS5Fbu7jVfsqUpTPUZECgYAcbq3mqWwExY2Kn0I660OqOFk620pGsSY7gECUQintCZioYemzC1TN9pM6fKnOIYriV4Ou7iswhEfVX+5bwMjH2ujmu8KDdpkpdhRoFCw3GUn/PDelQrptaKkKXnOIJe/R8m+TUxYCtECTlKlYS4hTst7YhTDz5sQHcXRtveATZQ==', '应用私钥', '', '请填写应用私钥', 'common', 'common_app_mini_alipay_rsa_private', '1574821203'), ('78', '1', '是否启用搜索', '', '', 'common', 'common_app_is_enable_search', '1575254074'), ('77', 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkwpOGFOJ0GF6vN9k2dih7Up4+0qecYGtGeZMLdkArDMQ3vgvZFyjAM8c6uFRCHfVoUF5mflVVskLaXMH9C3VY80fxE40WM3VXVW+z0M+WFdihmfB6m/xKpN0QkMVEce7yb7AyXAdNA20KKyjVKXAnDGU3nGc6grQ6uzNIp/Eb8jMPv91GOjzY8KYOxgSiVVM9p5Y1NedGBTQGeMWcRH5vi9ys2Ia0KDYtxuXDhIxMDAqrCNy5sODh0DUpTL+Di09jQRmdI9JNN79ibVmrBoU7ud8YbL/lR4iVT+zF848+OmJiK56yTLcxY8vrU2kGlGO2K8jKWDsOK93H0GF/+lA+wIDAQAB', '支付宝公钥', '', '请填写支付宝公钥', 'common', 'common_app_mini_alipay_out_rsa_public', '1574821203'), ('79', '1', '是否启用留言', '', '', 'common', 'common_app_is_enable_answer', '1575254074'), ('80', '3', '商品可添加规格最大数量', '建议不超过3个规格', '请填写谷歌最大数', 'common', 'common_spec_add_max_number', '1574662852'), ('81', '-', '路由分隔符', '建议填写 [ - ] 默认 [ - ] ,仅PATHINFO模式+短地址模式下有效', '请填写路由分隔符', 'common', 'common_route_separator', '1572944154'), ('82', 'wx0a2012ebad94beff', 'AppID', '小程序ID', '请填写appid', 'common', 'common_app_mini_weixin_appid', '1574661832'), ('83', 'd0e4e81180ea59b8fcc4299f6b05b362', 'AppSecret ', '小程序密钥', '请填写appsecret', 'common', 'common_app_mini_weixin_appsecret', '1574661832'), ('84', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_weixin_title', '1574661832'), ('85', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_weixin_describe', '1574661832'), ('61', '用户中心公告文字,后台配置修改。', '用户中心公告', '空则不显示公告', '', 'common', 'common_user_center_notice', '1566470981'), ('8', '公告内容而已', '商城公告', '空则不显示公告', '', 'common', 'common_shop_notice', '1566470981'), ('86', 'test@qq.com', '商店邮箱', '空则不显示', '客服邮箱格式有误', 'common', 'common_customer_store_email', '1573640974'), ('87', '', '商店二维码', '空则不展示', '', 'common', 'common_customer_store_qrcode', '1574662852'), ('152', '[{\"alias\":\"总部\",\"name\":\"devil55\",\"tel\":\"13222333333\",\"lng\":\"121.594278\",\"lat\":\"31.207917\",\"address\":\"张江高科\",\"province\":\"9\",\"city\":\"155\",\"county\":\"1937\",\"province_name\":\"上海市\",\"city_name\":\"浦东新区\",\"county_name\":\"张江镇\",\"id\":\"0\"},{\"alias\":\"三里屯自提点\",\"name\":\"sky\",\"tel\":\"021-88888888\",\"lng\":\"116.446432\",\"lat\":\"39.927859\",\"address\":\"优衣库\",\"province\":\"1\",\"city\":\"41\",\"county\":\"599\",\"province_name\":\"北京市\",\"city_name\":\"朝阳区\",\"county_name\":\"三里屯街道\",\"id\":\"1\"}]', '自提点地址', '', '请填写自提点地址', 'common', 'common_self_extraction_address', '1575257539'), ('88', '上海市 浦东新区', '商店地址', '空则不展示', '', 'common', 'common_customer_store_address', '1573640974'), ('89', '<p>用户注册协议</p><p><br/></p>', '用户注册协议', '最多 105000 个字符', '用户注册协议最多 105000 个字符', 'common', 'common_agreement_userregister', '1566227622'), ('90', '/static/upload/images/common/2019/05/17/1558025141249118.png', '用户注册背景图片', '', '请上传用户注册背景图片', 'home', 'home_site_user_register_bg_images', '1566227415'), ('91', '/static/upload/images/common/2019/05/17/1558062481107570.jpg', '图片', '图片1 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad1_images', '1558084931'), ('92', '/static/upload/images/common/2019/05/17/1558072588843696.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad2_images', '1558084931'), ('93', '/static/upload/images/common/2019/05/17/1558073623385520.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_login_ad3_images', '1558084931'), ('94', 'https://shopxo.net/', 'url地址', '地址1 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad1_url', '1558084931'), ('95', 'https://ask.shopxo.net/', 'url地址', '地址2 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad2_url', '1558084931'), ('96', 'https://shopxo.net/vip.html', 'url地址', '地址3 [ 带http://或https:// ]', '', 'home', 'home_site_user_login_ad3_url', '1558084931'), ('97', '', '背景色', '背景色1', '', 'home', 'home_site_user_login_ad1_bg_color', '1558084931'), ('98', '#FAFAFA', '背景色', '背景色2', '', 'home', 'home_site_user_login_ad2_bg_color', '1558084931'), ('99', '#FAFAFA', '背景色', '背景色3', '', 'home', 'home_site_user_login_ad3_bg_color', '1558084931'), ('100', '1', '登录图片验证码', '可以防止非法登录', '请选择是否开启登录图片验证码', 'home', 'home_user_login_img_verify_state', '1558084931'), ('101', '/static/upload/images/common/2019/05/17/1558072588843696.jpg', '图片', '图片1 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad1_images', '1558084915'), ('102', '/static/upload/images/common/2019/05/17/1558073623641199.jpg', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad2_images', '1558084915'), ('103', '', '图片', '图片2 [ 建议使用 450X350 像数 ]', '', 'home', 'home_site_user_forgetpwd_ad3_images', '1558084915'), ('104', 'https://shopxo.net/', 'url地址', '地址1 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad1_url', '1558084915'), ('105', '', 'url地址', '地址2 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad2_url', '1558084915'), ('106', '', 'url地址', '地址3 [ 带http://或https:// ]', '', 'home', 'home_site_user_forgetpwd_ad3_url', '1558084915'), ('107', '#FAFAFA', '背景色', '背景色1', '', 'home', 'home_site_user_forgetpwd_ad1_bg_color', '1558084915'), ('108', '#FAFAFA', '背景色', '背景色2', '', 'home', 'home_site_user_forgetpwd_ad2_bg_color', '1558084915'), ('109', '', '背景色', '背景色3', '', 'home', 'home_site_user_forgetpwd_ad3_bg_color', '1558084915'), ('110', '1', '用户注册图片验证码', '可以防止非法注册', '请选择是否开启用户注册图片验证码', 'home', 'home_user_register_img_verify_state', '1566227415'), ('111', '', '图片验证码规则', '默认白底黑字,可根据需求i加大验证码识别难度', '', 'common', 'common_images_verify_rules', '1558085166'), ('112', '1', 'SSL方式加密', '', '请选择是否使用SSL方式加密', 'common', 'common_email_is_use_ssl', '1566227590'), ('113', '活动/优惠未生效\n空包裹\n包裹丢失\n配送超时\n未按约定时间发货\n未送货上门\n物流显示签收但实际未收到货\n不喜欢/不想要', '仅退款原因', '可换行,一行一个', '请填写仅退款原因', 'home', 'home_order_aftersale_return_only_money_reason', '1570193301'), ('114', '7天无理由退换货\n配送超时\n未按约定时间发货\n未送货上门\n卖家发错货\n少件/漏发\n包装/商品破损/污渍\n商品信息描述不符\n使用后过敏\n已过/临近保质期\n无法溶解/结块/有异物', '退货退款原因', '可换行,一行一个', '请填写退货退款原因', 'home', 'home_order_aftersale_return_money_goods_reason', '1570193301'), ('115', '1', '用户注册协议', '', '请选择是否启用用户注册协议', 'home', 'home_is_enable_userregister_agreement', '1566227415'), ('116', '上海市 浦东新区', '退货地址', '用户退货货物收货地址', '请填写退货地址', 'home', 'home_order_aftersale_return_goods_address', '1570193301'), ('117', '0', '使用独立手机详情', '默认使用web详情', '请选择使用独立手机详情', 'common', 'common_app_is_use_mobile_detail', '1575254074'), ('118', '0', '强制绑定手机', '默认否', '请选择是否强制绑定手机', 'common', 'common_user_is_mandatory_bind_mobile', '1575254074'), ('119', '1', '关闭web站底部信息', '默认否', '请选择是否关闭web站底部信息', 'common', 'common_is_app_inside_close_footer', '1575254074'), ('120', '1', '关闭web站头部信息', '默认否', '请选择是否关闭web站头部信息', 'common', 'common_is_app_inside_close_header', '1575254074'), ('121', '0', '固定顶部导航', '默认否', '请选择是否固定顶部导航', 'common', 'common_app_is_header_nav_fixed', '1575254074'), ('122', '1', '开启在线客服', '默认否', '请选择是否开启在线客服', 'common', 'common_app_is_online_service', '1575254074'), ('123', '0', '启用限时秒杀', '默认否', '请选择是否启用限时秒杀', 'common', 'common_app_is_limitedtimediscount', '1575254074'), ('124', '0', '启用好物推荐', '默认否,需重新生成小程序包(启用则需到微信小程序后台申请权限)', '请选择是否启用好物推荐', 'common', 'common_app_is_good_thing', '1572944201'), ('125', '16634987', 'AppID', '智能小程序ID', '请填写AppID', 'common', 'common_app_mini_baidu_appid', '1574855229'), ('126', 'C9Gg744cBqQ3zvbC5uOPMg9yWpmuQ8O7', 'AppKey', '智能小程序KEY', '请填写AppKey', 'common', 'common_app_mini_baidu_appkey', '1574855229'), ('127', 'KmdPEyuSAXcbiouKVq6LOSUjctZpxmNb', 'AppSecret', '智能小程序密匙', '请填写AppSecret', 'common', 'common_app_mini_baidu_appsecret', '1574855229'), ('128', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_baidu_title', '1574855229'), ('129', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_baidu_describe', '1574855229'), ('130', '0', '留言需要登录', '默认否', '请选择是否留言需要登录', 'common', 'common_is_login_answer', '1566124965'), ('131', '0', '启用海报分享', '默认否\n', '请选择是否启用海报分享\n', 'common', 'common_app_is_poster_share', '1572944201'), ('132', '30', '订单关闭脚本时长', '单位 分钟,默认30分钟', '请填写订单关闭脚本时长', 'common', 'common_order_close_limit_time', '1566124965'), ('133', '21600', '订单自动收货脚本时长', '单位 分钟,默认21600分钟/15天', '请填写订单自动收货脚本时长', 'common', 'common_order_success_limit_time', '1566124965'), ('134', 'tt65341389fa1e87f3', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_toutiao_appid', '1575253496'), ('135', '86853a0f2685a2af56e625d153b9bdc731950643', 'AppSecret', '小程序Secret', '请填写AppSecret', 'common', 'common_app_mini_toutiao_appsecret', '1575253496'), ('136', '1900017261', 'PayMerchantID', '支付商户号', '请填写支付商户号', 'common', 'common_app_mini_toutiao_pay_merchant_id', '1575253496'), ('137', '800172615976', 'PayAppID', '支付AppID', '请填写AppID', 'common', 'common_app_mini_toutiao_pay_appid', '1575253496'), ('138', '4xi2kcrzgancnanghtafqtqrwgy5534itichypud', 'PaySecret', '支付Secret', '请填写支付Secret', 'common', 'common_app_mini_toutiao_pay_secret', '1575253496'), ('139', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_toutiao_title', '1575253496'), ('140', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_toutiao_describe', '1575253496'), ('141', '', '公安备案号', '如:京公网安备xxx号', '请填写公安备案号', 'home', 'home_site_security_record_name', '1572944120'), ('142', '', '公安备案地址', '备案展示页面的url地址', '请填写公安备案地址', 'home', 'home_site_security_record_url', '1572944120'), ('143', '1109990622', 'AppID', '小程序ID', '请填写AppID', 'common', 'common_app_mini_qq_appid', '1575253538'), ('144', 'PdVsj1n2sByQQBCi', 'AppSecret', '小程序Secret', '请填写AppSecret', 'common', 'common_app_mini_qq_appsecret', '1575253538'), ('145', 'cbf122945888dcd56d8f5d446ac3669a', 'AppToken', '小程序Token', '请填写AppToken', 'common', 'common_app_mini_qq_apptoken', '1575253538'), ('146', 'ShopXO', '名称', '', '请填写名称', 'common', 'common_app_mini_qq_title', '1575253538'), ('147', '国内领先企业级B2C开源电商系统!', '描述', '', '请填写描述', 'common', 'common_app_mini_qq_describe', '1575253538'), ('148', '0', '是否启用用户中心头部小导航', '默认否', '请选择是否启用用户中心头部小导航', 'common', 'common_app_is_head_vice_nav', '1575254074'), ('151', '2', '站点类型', '默认销售型', '请选择站点类型', 'common', 'common_site_type', '1575257539'), ('150', '', '展示型操作名称', '默认 立即咨询', '请填写展示型操作名称', 'common', 'common_is_exhibition_mode_btn_text', '1575257539'), ('153', '', '虚拟信息标题', '默认密钥信息', '请填写虚拟信息标题', 'common', 'common_site_fictitious_return_title', '1575257539'), ('154', '', '提示信息', '', '请填写提示信息', 'common', 'common_site_fictitious_return_tips', '1575257539'), ('155', 'KXJLMYCN', '在线客服-企业编码', '空则不显示在线客服', '请填写在线客服-企业编码', 'common', 'common_app_mini_alipay_tnt_inst_id', '1574848356'), ('156', 'SCE00004954', '在线客服-聊天窗编码', '空则不显示在线客服', '请填写在线客服-聊天窗编码', 'common', 'common_app_mini_alipay_scene', '1574848356'), ('157', '1', '商品详情页展示相册', '默认否', '请选择是否商品详情页展示相册', 'common', 'common_is_goods_detail_show_photo', '1575272167');
COMMIT;
-- ----------------------------
......@@ -428,7 +428,7 @@ CREATE TABLE `s_goods` (
-- Records of `s_goods`
-- ----------------------------
BEGIN;
INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '', '0', '110', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547450880620837.png\" title=\"1547450880620837.png\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547450880750687.png\" title=\"1547450880750687.png\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547450880917418.png\" title=\"1547450880917418.png\"/></p><p><br/></p>', '2', '10', '103', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', null, '0', '', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '', '', '', '0', '1547450921', '1574168666'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1666', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547451595700972.jpg\" title=\"1547451595700972.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451595528800.jpg\" title=\"1547451595528800.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451595616298.jpg\" title=\"1547451595616298.jpg\"/></p><p><br/></p>', '2', '28', '1195', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', null, '1', null, null, '', '', '', '0', '1547451624', '1572944069'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '231', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547451947383902.jpg\" title=\"1547451947383902.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947686990.jpg\" title=\"1547451947686990.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947676180.jpg\" title=\"1547451947676180.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947791154.jpg\" title=\"1547451947791154.jpg\"/></p><p><br/></p>', '2', '1', '93', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', null, '0', null, null, '', '', '', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '', '0', '526', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547452505568604.jpg\" title=\"1547452505568604.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452505349986.jpg\" title=\"1547452505349986.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452505184884.jpg\" title=\"1547452505184884.jpg\"/></p><p><br/></p>', '2', '4', '225', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', null, '0', null, null, '', '', '', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '', '0', '424', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547452760417982.jpg\" title=\"1547452760417982.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452760659259.jpg\" title=\"1547452760659259.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452760984656.jpg\" title=\"1547452760984656.jpg\"/></p><p><br/></p>', '2', '10', '418', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', null, '0', null, null, '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '315', '步', '/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', '<p><span style=\"color: rgb(255, 0, 0); font-size: 18px;\">&nbsp;X5L/SL/V/M (5.0寸)&nbsp; X5max钢化膜(5.5寸)&nbsp; X5pro钢化膜(5.2寸)&nbsp;</span></p><p><span style=\"color: rgb(255, 0, 0); font-size: 18px;\"><br/></span></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042405182.jpg\" title=\"1547453042405182.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042614480.jpg\" title=\"1547453042614480.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042816509.jpg\" title=\"1547453042816509.jpg\"/></p><p><br/></p>', '2', '1', '312', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', null, '0', null, null, '', '', '', '0', '1547453135', '1564057484'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '', '0', '307', '件', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547453910353340.jpg\" title=\"1547453910353340.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453910505349.jpg\" title=\"1547453910505349.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453910394886.jpg\" title=\"1547453910394886.jpg\"/></p><p><br/></p>', '2', '6', '263', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', null, '0', null, null, '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '32', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '0.00', '0.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547454192301566.jpg\" title=\"1547454192301566.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454192448116.jpg\" title=\"1547454192448116.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454192474638.jpg\" title=\"1547454192474638.jpg\"/></p><p><br/></p>', '2', '0', '239', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', null, '0', null, null, '', '', '', '0', '1547454269', '1573640731'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '583', '件', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547454712270511.jpg\" title=\"1547454712270511.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713556301.jpg\" title=\"1547454713556301.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713800333.jpg\" title=\"1547454713800333.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713456602.jpg\" title=\"1547454713456602.jpg\"/></p><p><br/></p>', '3', '7', '335', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', null, '1', '', null, '', '', '', '0', '1547454786', '1570168238'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '17', '件', '/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', '<p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><span style=\"color: rgb(153, 51, 255);\">【品牌】欧单 学媛风 猫咪良品</span></strong></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【吊牌】xueyuanfeng&nbsp;</strong></strong></span></strong></span><strong style=\"font-size: 18px; line-height: 27px;\"><strong><span style=\"color: rgb(153, 51, 255);\">猫咪良品</span></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><strong>【面料质地】涤棉</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>拼接蕾丝&nbsp;</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>&nbsp;</strong></strong></strong></span><strong style=\"font-size: 18px; line-height: 1.5;\"><strong><strong>后中拉链 有内衬</strong></strong></strong><strong style=\"font-size: 18px;\"><strong><strong><span style=\"font-family: 微软雅黑;\"><strong>(非专业机构鉴定,介意请慎拍)</strong></span></strong></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"font-size: 18px;\"><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"><span style=\"background-color: rgb(255, 255, 0);\"><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\">好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~</span></strong></span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><strong>【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦</strong></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span><strong>【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦</strong></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"></span></strong></span></p><p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0); font-family: 微软雅黑;\"><span style=\"font-size: 18px; line-height: 27px;\"></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">XS码尺寸: 悬挂衣长81CM.胸围80</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">内合适</span></span></strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.腰围63CM</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.臀围86CM</span></span></strong></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">S码尺寸: 悬挂衣长82CM.胸围84</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围67CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围90CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">M码尺寸: 悬挂衣长83CM.胸围88</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围71CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围94CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">L码尺寸: 悬挂衣长84CM.胸围92</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围75CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围98CM</span></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong style=\"font-size: 18px; line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\"><strong><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(0, 0, 255);\"><strong><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\">(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)</span></strong></span></strong></span></strong></strong></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><span style=\"color: rgb(0, 0, 255);\"><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\"></span></span></span></strong></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">PS:常规码数,可按平时号选择哦。修身</span></span></span></strong><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong>蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~</strong></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455266234658.jpg\" title=\"1547455266234658.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455266527628.jpg\" title=\"1547455266527628.jpg\"/></p><p><br/></p>', '2', '6', '394', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', null, '0', '', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '', '', '', '0', '1547455375', '1573647776'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665983', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00-422.00', '268.00', '422.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '<p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><span style=\"color: rgb(153, 51, 255);\">【品牌】欧单 学媛风 猫咪良品</span></strong></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【吊牌】xueyuanfeng&nbsp;</strong></strong></span></strong></span><strong style=\"font-size: 18px; line-height: 27px;\"><strong><span style=\"color: rgb(153, 51, 255);\">猫咪良品</span></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><strong>【面料质地】网纱绣花钉珠拼接蕾丝</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>&nbsp;</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>有</strong></strong></strong></span><strong style=\"font-size: 18px; line-height: 1.5;\"><strong><strong>拉链有内衬</strong></strong></strong><strong style=\"font-size: 18px;\"><strong><strong><span style=\"font-family: 微软雅黑;\"><strong>(非专业机构鉴定,介意请慎拍)</strong></span></strong></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"font-size: 18px;\"><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"><span style=\"background-color: rgb(255, 255, 0);\"><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\">好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~</span></strong></span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><strong>【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦</strong></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【商品尺寸】XS/S/M/L<strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><strong>&nbsp;小高腰设计 胸那考虑撑开因素哦 微弹的哦</strong></strong></span></strong><br/></strong></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"></span></strong></span></p><p style=\"white-space: normal; text-align: center;\"><span style=\"color: rgb(255, 0, 0); font-family: 微软雅黑;\"><span style=\"font-size: 18px; line-height: 27px;\"></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">XS码尺寸: 衣长82CM.胸围80</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">内合适</span></span></strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.腰围63CM</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.臀围86CM</span></span></strong></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">S码尺寸: 衣长83CM.胸围84</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围67CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围90CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">M码尺寸: 衣长84CM.胸围88</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围71CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围94CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">L码尺寸: 衣长85CM.胸围92</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围75CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围98CM</span></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong style=\"font-size: 18px; line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\"><strong><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(0, 0, 255);\"><strong><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\">(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)</span></strong></span></strong></span></strong></strong></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><span style=\"color: rgb(0, 0, 255);\"><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\"></span></span></span></strong></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">PS:常规码数,可按平时号选择哦。修身</span></span></span></strong><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">版型,如果腰粗可以适当考虑大1号哦~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~</span></span></span></strong></p><p><br/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601898622.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601528614.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601314107.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601168384.jpg\"/></p><p><br/></p>', '4', '1', '222', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', null, '1', '', null, '', '', '', '0', '1547455700', '1569207976'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '轻奢醋酸面料,高标准的生产要求,品质保证', 'xxxxhhhhhh商品型号', '0', '595', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '188.00', '188.00', '0.01', '0.01', '0.01', '3', '1', '0', '1', '1', '1', '<table class=\"am-table am-table-bordered\"><tbody><tr class=\"firstRow\"><td><span style=\"background-color: rgb(255, 0, 0);\"><strong>11</strong></span></td><td><strong>22</strong></td><td><strong>33</strong></td><td><strong>44</strong></td><td><strong>55</strong></td><td><strong>66</strong></td></tr><tr><td>q</td><td>w</td><td>e</td><td>r</td><td>t</td><td>y</td></tr><tr><td>a</td><td>s</td><td>d</td><td>f</td><td>g</td><td>h</td></tr><tr><td>z</td><td>x</td><td>c</td><td>v</td><td>b</td><td>n</td></tr></tbody></table><p><br/></p><p><br/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547456214155362.jpg\" title=\"1547456214155362.jpg\" alt=\"d-1.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455907486857.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455907256518.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547456228913731.jpg\" title=\"1547456228913731.jpg\" alt=\"d-2.jpg\"/></p>', '3', '3', '789', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', null, '1', '[{\"title\":\"\\u989c\\u8272\",\"value\":[\"\\u7c89\\u8272\",\"\\u767d\\u8272\"]},{\"title\":\"\\u5c3a\\u7801\",\"value\":[\"S\",\"M\",\"L\"]}]', null, 'ZK爆款连衣裙', '连衣裙,裙子', '夏季连衣裙,瘦身裙子', '0', '1547456230', '1573454165');
INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '', '0', '109', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547450880620837.png\" title=\"1547450880620837.png\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547450880750687.png\" title=\"1547450880750687.png\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547450880917418.png\" title=\"1547450880917418.png\"/></p><p><br/></p>', '2', '10', '108', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', null, '0', '', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '', '', '', '0', '1547450921', '1574168666'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', '', 'iPhone 6 Plus', '0', '1666', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547451595700972.jpg\" title=\"1547451595700972.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451595528800.jpg\" title=\"1547451595528800.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451595616298.jpg\" title=\"1547451595616298.jpg\"/></p><p><br/></p>', '2', '28', '1204', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', null, '1', null, null, '', '', '', '0', '1547451624', '1572944069'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '', '0', '231', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547451947383902.jpg\" title=\"1547451947383902.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947686990.jpg\" title=\"1547451947686990.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947676180.jpg\" title=\"1547451947676180.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547451947791154.jpg\" title=\"1547451947791154.jpg\"/></p><p><br/></p>', '2', '1', '93', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', null, '0', null, null, '', '', '', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '', '0', '526', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547452505568604.jpg\" title=\"1547452505568604.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452505349986.jpg\" title=\"1547452505349986.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452505184884.jpg\" title=\"1547452505184884.jpg\"/></p><p><br/></p>', '2', '4', '225', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', null, '0', null, null, '', '', '', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '', '0', '424', '步', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547452760417982.jpg\" title=\"1547452760417982.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452760659259.jpg\" title=\"1547452760659259.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547452760984656.jpg\" title=\"1547452760984656.jpg\"/></p><p><br/></p>', '2', '10', '419', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', null, '0', null, null, '', '', '', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '', '0', '315', '步', '/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', '<p><span style=\"color: rgb(255, 0, 0); font-size: 18px;\">&nbsp;X5L/SL/V/M (5.0寸)&nbsp; X5max钢化膜(5.5寸)&nbsp; X5pro钢化膜(5.2寸)&nbsp;</span></p><p><span style=\"color: rgb(255, 0, 0); font-size: 18px;\"><br/></span></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042405182.jpg\" title=\"1547453042405182.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042614480.jpg\" title=\"1547453042614480.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453042816509.jpg\" title=\"1547453042816509.jpg\"/></p><p><br/></p>', '2', '1', '312', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', null, '0', null, null, '', '', '', '0', '1547453135', '1564057484'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '', '0', '300', '件', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547453910353340.jpg\" title=\"1547453910353340.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453910505349.jpg\" title=\"1547453910505349.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547453910394886.jpg\" title=\"1547453910394886.jpg\"/></p><p><br/></p>', '2', '6', '269', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', null, '0', null, null, '', '', '', '0', '1547453967', '1554485498'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '', '0', '31', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '0.00', '0.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547454192301566.jpg\" title=\"1547454192301566.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454192448116.jpg\" title=\"1547454192448116.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454192474638.jpg\" title=\"1547454192474638.jpg\"/></p><p><br/></p>', '2', '0', '240', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', null, '0', null, null, '', '', '', '0', '1547454269', '1573640731'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '', '0', '580', '件', '/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', '<p><img src=\"/static/upload/images/goods/2019/01/14/1547454712270511.jpg\" title=\"1547454712270511.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713556301.jpg\" title=\"1547454713556301.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713800333.jpg\" title=\"1547454713800333.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547454713456602.jpg\" title=\"1547454713456602.jpg\"/></p><p><br/></p>', '3', '7', '337', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', null, '1', '', null, '', '', '', '0', '1547454786', '1570168238'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '', '0', '15', '件', '/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', '<p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><span style=\"color: rgb(153, 51, 255);\">【品牌】欧单 学媛风 猫咪良品</span></strong></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【吊牌】xueyuanfeng&nbsp;</strong></strong></span></strong></span><strong style=\"font-size: 18px; line-height: 27px;\"><strong><span style=\"color: rgb(153, 51, 255);\">猫咪良品</span></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><strong>【面料质地】涤棉</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>拼接蕾丝&nbsp;</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>&nbsp;</strong></strong></strong></span><strong style=\"font-size: 18px; line-height: 1.5;\"><strong><strong>后中拉链 有内衬</strong></strong></strong><strong style=\"font-size: 18px;\"><strong><strong><span style=\"font-family: 微软雅黑;\"><strong>(非专业机构鉴定,介意请慎拍)</strong></span></strong></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"font-size: 18px;\"><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"><span style=\"background-color: rgb(255, 255, 0);\"><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\">好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~</span></strong></span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><strong>【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦</strong></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span><strong>【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦</strong></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"></span></strong></span></p><p style=\"white-space: normal;\"><span style=\"color: rgb(255, 0, 0); font-family: 微软雅黑;\"><span style=\"font-size: 18px; line-height: 27px;\"></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">XS码尺寸: 悬挂衣长81CM.胸围80</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">内合适</span></span></strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.腰围63CM</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.臀围86CM</span></span></strong></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">S码尺寸: 悬挂衣长82CM.胸围84</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围67CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围90CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">M码尺寸: 悬挂衣长83CM.胸围88</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围71CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围94CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">L码尺寸: 悬挂衣长84CM.胸围92</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围75CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围98CM</span></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong style=\"font-size: 18px; line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\"><strong><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(0, 0, 255);\"><strong><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\">(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)</span></strong></span></strong></span></strong></strong></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><span style=\"color: rgb(0, 0, 255);\"><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\"></span></span></span></strong></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">PS:常规码数,可按平时号选择哦。修身</span></span></span></strong><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong>蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~</strong></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455266234658.jpg\" title=\"1547455266234658.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455266527628.jpg\" title=\"1547455266527628.jpg\"/></p><p><br/></p>', '2', '6', '400', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', null, '0', '', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '', '', '', '0', '1547455375', '1573647776'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '', '0', '36665983', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00-422.00', '268.00', '422.00', '160.00-258.00', '160.00', '258.00', '1', '1', '0', '1', '1', '1', '<p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><span style=\"color: rgb(153, 51, 255);\">【品牌】欧单 学媛风 猫咪良品</span></strong></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【吊牌】xueyuanfeng&nbsp;</strong></strong></span></strong></span><strong style=\"font-size: 18px; line-height: 27px;\"><strong><span style=\"color: rgb(153, 51, 255);\">猫咪良品</span></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><strong><strong>【面料质地】网纱绣花钉珠拼接蕾丝</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>&nbsp;</strong></strong></strong></span><span style=\"font-size: 18px;\"><strong><strong><strong>有</strong></strong></strong></span><strong style=\"font-size: 18px; line-height: 1.5;\"><strong><strong>拉链有内衬</strong></strong></strong><strong style=\"font-size: 18px;\"><strong><strong><span style=\"font-family: 微软雅黑;\"><strong>(非专业机构鉴定,介意请慎拍)</strong></span></strong></strong></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"font-size: 18px;\"><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"></span><span style=\"color: rgb(153, 51, 255);\"><span style=\"background-color: rgb(255, 255, 0);\"><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\">好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~</span></strong></span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><strong>【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦</strong></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"></span></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><strong>【商品尺寸】XS/S/M/L<strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><strong>&nbsp;小高腰设计 胸那考虑撑开因素哦 微弹的哦</strong></strong></span></strong><br/></strong></strong></span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><span style=\"font-size: 18px;\"><strong><span style=\"color: rgb(153, 51, 255);\"></span></strong></span></p><p style=\"white-space: normal; text-align: center;\"><span style=\"color: rgb(255, 0, 0); font-family: 微软雅黑;\"><span style=\"font-size: 18px; line-height: 27px;\"></span></span></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">XS码尺寸: 衣长82CM.胸围80</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">内合适</span></span></strong><span style=\"color: rgb(64, 64, 64);\"><strong><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.腰围63CM</span></span></strong></span><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\">.臀围86CM</span></span></strong></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">S码尺寸: 衣长83CM.胸围84</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围67CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围90CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">M码尺寸: 衣长84CM.胸围88</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围71CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围94CM</span></strong></strong></p><p style=\"white-space: normal; text-align: center;\"><strong><strong><span style=\"color: rgb(255, 0, 0);\">L码尺寸: 衣长85CM.胸围92</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">内合适</span></strong><strong><span style=\"color: rgb(255, 0, 0);\">.腰围75CM</span></strong><strong style=\"line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\">.臀围98CM</span></strong></strong></p><p style=\"white-space: normal;\"><br/></p><p style=\"white-space: normal; text-align: center;\"><strong style=\"font-size: 18px; line-height: 27px;\"><span style=\"color: rgb(255, 0, 0);\"><span style=\"font-family: 微软雅黑;\"><strong><strong style=\"color: rgb(0, 0, 0);\"><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(0, 0, 255);\"><strong><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\">(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)</span></strong></span></strong></span></strong></strong></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong><span style=\"color: rgb(153, 51, 255);\"><strong><span style=\"color: rgb(153, 51, 153);\"><span style=\"color: rgb(0, 0, 255);\"><span style=\"color: rgb(255, 0, 0); font-family: 新宋体;\"></span></span></span></strong></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">PS:常规码数,可按平时号选择哦。修身</span></span></span></strong><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">版型,如果腰粗可以适当考虑大1号哦~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~</span></span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; white-space: normal; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255); text-align: center;\"><strong style=\"line-height: 1.5; color: rgb(64, 64, 64);\"><span style=\"color: rgb(68, 68, 68);\"><span style=\"background-color: rgb(92, 81, 80);\"><span style=\"background-color: rgb(255, 255, 255);\">肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~</span></span></span></strong></p><p><br/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601898622.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601528614.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601314107.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455601168384.jpg\"/></p><p><br/></p>', '4', '1', '222', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', null, '1', '', null, '', '', '', '0', '1547455700', '1569207976'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '轻奢醋酸面料,高标准的生产要求,品质保证', 'xxxxhhhhhh商品型号', '0', '595', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '188.00', '188.00', '0.01', '0.01', '0.01', '3', '1', '0', '1', '1', '1', '<table class=\"am-table am-table-bordered\"><tbody><tr class=\"firstRow\"><td><span style=\"background-color: rgb(255, 0, 0);\"><strong>11</strong></span></td><td><strong>22</strong></td><td><strong>33</strong></td><td><strong>44</strong></td><td><strong>55</strong></td><td><strong>66</strong></td></tr><tr><td>q</td><td>w</td><td>e</td><td>r</td><td>t</td><td>y</td></tr><tr><td>a</td><td>s</td><td>d</td><td>f</td><td>g</td><td>h</td></tr><tr><td>z</td><td>x</td><td>c</td><td>v</td><td>b</td><td>n</td></tr></tbody></table><p><br/></p><p><br/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547456214155362.jpg\" title=\"1547456214155362.jpg\" alt=\"d-1.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455907486857.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547455907256518.jpg\"/></p><p><img src=\"/static/upload/images/goods/2019/01/14/1547456228913731.jpg\" title=\"1547456228913731.jpg\" alt=\"d-2.jpg\"/></p>', '3', '3', '790', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', null, '1', '[{\"title\":\"\\u989c\\u8272\",\"value\":[\"\\u7c89\\u8272\",\"\\u767d\\u8272\"]},{\"title\":\"\\u5c3a\\u7801\",\"value\":[\"S\",\"M\",\"L\"]}]', null, 'ZK爆款连衣裙', '连衣裙,裙子', '夏季连衣裙,瘦身裙子', '0', '1547456230', '1573454165');
COMMIT;
-- ----------------------------
......@@ -442,13 +442,13 @@ CREATE TABLE `s_goods_browse` (
`add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
`upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览';
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览';
-- ----------------------------
-- Records of `s_goods_browse`
-- ----------------------------
BEGIN;
INSERT INTO `s_goods_browse` VALUES ('1', '8', '1', '1573637630', '1574046178'), ('2', '4', '1', '1573640831', '1573640831'), ('3', '9', '1', '1573640833', '1573646497'), ('4', '2', '1', '1573640835', '1574043755'), ('5', '5', '1', '1573641088', '1573641088'), ('6', '10', '1', '1573647858', '1573650652'), ('7', '7', '1', '1574046156', '1574046156'), ('8', '8', '2', '1574072769', '1574333742'), ('9', '7', '2', '1574143422', '1574665024'), ('10', '11', '2', '1574150854', '1574150854'), ('11', '6', '2', '1574152236', '1574336075'), ('12', '1', '2', '1574152880', '1574333924'), ('13', '2', '2', '1574169526', '1574336008'), ('14', '5', '2', '1574169531', '1574404734'), ('15', '10', '2', '1574169534', '1574333787'), ('16', '9', '2', '1574215656', '1574215656'), ('17', '3', '2', '1574326234', '1574326257'), ('18', '12', '2', '1574333746', '1574333746'), ('19', '4', '2', '1574652421', '1574652421'), ('20', '2', '3', '1574661966', '1574664211'), ('21', '1', '3', '1574664146', '1574746931'), ('22', '8', '3', '1574680839', '1574931465'), ('23', '10', '3', '1574682359', '1574686095'), ('24', '1', '4', '1574833599', '1574834885'), ('25', '2', '4', '1574834823', '1574834847'), ('26', '10', '5', '1574858177', '1574858177'), ('27', '1', '5', '1574858184', '1574858184'), ('28', '7', '5', '1574858189', '1574858189'), ('29', '2', '5', '1574858191', '1574858191');
INSERT INTO `s_goods_browse` VALUES ('1', '8', '1', '1573637630', '1574046178'), ('2', '4', '1', '1573640831', '1573640831'), ('3', '9', '1', '1573640833', '1573646497'), ('4', '2', '1', '1573640835', '1574043755'), ('5', '5', '1', '1573641088', '1573641088'), ('6', '10', '1', '1573647858', '1573650652'), ('7', '7', '1', '1574046156', '1574046156'), ('8', '8', '2', '1574072769', '1574333742'), ('9', '7', '2', '1574143422', '1574665024'), ('10', '11', '2', '1574150854', '1574150854'), ('11', '6', '2', '1574152236', '1574336075'), ('12', '1', '2', '1574152880', '1574333924'), ('13', '2', '2', '1574169526', '1574336008'), ('14', '5', '2', '1574169531', '1574404734'), ('15', '10', '2', '1574169534', '1574333787'), ('16', '9', '2', '1574215656', '1574215656'), ('17', '3', '2', '1574326234', '1574326257'), ('18', '12', '2', '1574333746', '1574333746'), ('19', '4', '2', '1574652421', '1574652421'), ('20', '2', '3', '1574661966', '1574664211'), ('21', '1', '3', '1574664146', '1574746931'), ('22', '8', '3', '1574680839', '1574931465'), ('23', '10', '3', '1574682359', '1574686095'), ('24', '1', '4', '1574833599', '1574834885'), ('25', '2', '4', '1574834823', '1574834847'), ('26', '10', '5', '1574858177', '1574858177'), ('27', '1', '5', '1574858184', '1574858184'), ('28', '7', '5', '1574858189', '1574858189'), ('29', '2', '5', '1574858191', '1574858191'), ('30', '1', '10', '1575256153', '1575256278'), ('31', '10', '10', '1575256248', '1575265460'), ('32', '9', '10', '1575256253', '1575265381'), ('33', '7', '10', '1575257522', '1575265006'), ('34', '8', '10', '1575265500', '1575265500');
COMMIT;
-- ----------------------------
......@@ -573,13 +573,13 @@ CREATE TABLE `s_goods_favor` (
`user_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户id',
`add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏';
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏';
-- ----------------------------
-- Records of `s_goods_favor`
-- ----------------------------
BEGIN;
INSERT INTO `s_goods_favor` VALUES ('1', '8', '3', '1574930882');
INSERT INTO `s_goods_favor` VALUES ('1', '8', '3', '1574930882'), ('2', '7', '10', '1575254952');
COMMIT;
-- ----------------------------
......@@ -629,7 +629,7 @@ CREATE TABLE `s_goods_spec_base` (
-- Records of `s_goods_spec_base`
-- ----------------------------
BEGIN;
INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '231', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '526', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '424', '0.00', '', '', '3200.00', null, '1547452798'), ('155', '7', '168.00', '307', '0.00', '', '', '760.00', null, '1554485498'), ('356', '6', '2998.90', '315', '0.00', '', '', '3200.00', null, '1564057484'), ('369', '2', '6050.00', '97', '0.00', '', '', '6800.00', null, '1564735109'), ('370', '2', '6600.00', '198', '0.00', '', '', '7200.00', '', '1564735109'), ('371', '2', '6800.00', '294', '0.00', '', '', '7600.00', '', '1564735109'), ('372', '2', '6050.00', '300', '0.00', '', '', '6800.00', '', '1564735109'), ('373', '2', '6600.00', '297', '0.00', '', '', '7200.00', '', '1564735109'), ('374', '2', '6800.00', '299', '0.00', '', '', '7600.00', '', '1564735109'), ('375', '2', '4500.00', '87', '0.00', '', '', '6800.00', '', '1564735109'), ('376', '2', '4800.00', '49', '0.00', '', '', '6600.00', '', '1564735109'), ('377', '2', '5500.00', '45', '0.00', '', '', '6000.00', '', '1564735109'), ('418', '8', '356.00', '32', '0.00', '', '', '0.00', null, '1565230383'), ('529', '11', '258.00', '36665655', '0.00', '', '', '268.00', null, '1569207976'), ('530', '11', '238.00', '322', '0.00', '', '', '343.00', null, '1569207976'), ('531', '11', '160.00', '6', '0.00', '', '', '422.00', null, '1569207976'), ('608', '9', '120.00', '11', '0.30', '', '', '160.00', null, '1570168238'), ('609', '9', '120.00', '83', '0.30', '', '', '160.00', null, '1570168238'), ('610', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1570168238'), ('611', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1570168238'), ('612', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1570168238'), ('613', '9', '136.00', '50', '0.30', '', '', '188.00', null, '1570168238'), ('614', '9', '136.00', '19', '0.30', '', '', '188.00', null, '1570168238'), ('615', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1570168238'), ('616', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1570168238'), ('617', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('618', '12', '0.01', '99', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('619', '12', '0.01', '98', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('620', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('621', '12', '0.01', '98', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('622', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('624', '10', '228.00', '17', '0.00', '', '', '568.00', null, '1573647776'), ('626', '1', '2100.00', '110', '0.00', '', '', '3200.00', null, '1574168666');
INSERT INTO `s_goods_spec_base` VALUES ('21', '3', '3888.00', '231', '0.00', '', '', '6866.00', null, '1547452007'), ('22', '4', '1999.00', '526', '0.00', '', '', '2300.00', null, '1547452553'), ('23', '5', '2499.00', '424', '0.00', '', '', '3200.00', null, '1547452798'), ('155', '7', '168.00', '300', '0.00', '', '', '760.00', null, '1554485498'), ('356', '6', '2998.90', '315', '0.00', '', '', '3200.00', null, '1564057484'), ('369', '2', '6050.00', '97', '0.00', '', '', '6800.00', null, '1564735109'), ('370', '2', '6600.00', '198', '0.00', '', '', '7200.00', '', '1564735109'), ('371', '2', '6800.00', '294', '0.00', '', '', '7600.00', '', '1564735109'), ('372', '2', '6050.00', '300', '0.00', '', '', '6800.00', '', '1564735109'), ('373', '2', '6600.00', '297', '0.00', '', '', '7200.00', '', '1564735109'), ('374', '2', '6800.00', '299', '0.00', '', '', '7600.00', '', '1564735109'), ('375', '2', '4500.00', '87', '0.00', '', '', '6800.00', '', '1564735109'), ('376', '2', '4800.00', '49', '0.00', '', '', '6600.00', '', '1564735109'), ('377', '2', '5500.00', '45', '0.00', '', '', '6000.00', '', '1564735109'), ('418', '8', '356.00', '31', '0.00', '', '', '0.00', null, '1565230383'), ('529', '11', '258.00', '36665655', '0.00', '', '', '268.00', null, '1569207976'), ('530', '11', '238.00', '322', '0.00', '', '', '343.00', null, '1569207976'), ('531', '11', '160.00', '6', '0.00', '', '', '422.00', null, '1569207976'), ('608', '9', '120.00', '11', '0.30', '', '', '160.00', null, '1570168238'), ('609', '9', '120.00', '83', '0.30', '', '', '160.00', null, '1570168238'), ('610', '9', '120.00', '13', '0.30', '', '', '160.00', null, '1570168238'), ('611', '9', '120.00', '76', '0.30', '', '', '160.00', null, '1570168238'), ('612', '9', '136.00', '43', '0.30', '', '', '188.00', null, '1570168238'), ('613', '9', '136.00', '48', '0.30', '', '', '188.00', null, '1570168238'), ('614', '9', '136.00', '18', '0.30', '', '', '188.00', null, '1570168238'), ('615', '9', '158.00', '243', '0.30', '', '', '216.00', null, '1570168238'), ('616', '9', '158.00', '45', '0.30', '', '', '216.00', null, '1570168238'), ('617', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('618', '12', '0.01', '99', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('619', '12', '0.01', '98', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('620', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('621', '12', '0.01', '98', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('622', '12', '0.01', '100', '0.50', 'gg11', 'txm11', '188.00', null, '1573454165'), ('624', '10', '228.00', '15', '0.00', '', '', '568.00', null, '1573647776'), ('626', '1', '2100.00', '109', '0.00', '', '', '3200.00', null, '1574168666');
COMMIT;
-- ----------------------------
......@@ -719,13 +719,13 @@ CREATE TABLE `s_message` (
`add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) 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_message`
-- ----------------------------
BEGIN;
INSERT INTO `s_message` VALUES ('1', '1', '订单支付', '订单支付成功,金额4500元', '1', '1', '0', '0', '0', '0', '1574042904'), ('2', '1', '订单发货', '订单已发货', '1', '1', '0', '0', '0', '0', '1574042910'), ('3', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574164248'), ('4', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167621'), ('5', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167661'), ('6', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574167661'), ('7', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167698'), ('8', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574167698'), ('9', '2', '订单支付', '订单支付成功,金额13328元', '5', '1', '0', '1', '0', '0', '1574169636'), ('10', '2', '订单发货', '订单已发货', '5', '1', '0', '1', '0', '0', '1574169636'), ('11', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574170448'), ('12', '2', '订单收货', '订单收货成功', '4', '1', '0', '1', '0', '0', '1574170448'), ('13', '2', '积分变动', '订单商品完成赠送积分增加30', '0', '0', '0', '1', '0', '0', '1574170464'), ('14', '2', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '1', '0', '0', '1574170465'), ('15', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574170465'), ('16', '2', '订单收货', '订单收货成功', '5', '1', '0', '1', '0', '0', '1574170465'), ('17', '2', '订单支付', '订单支付成功,金额120元', '6', '1', '0', '1', '0', '0', '1574215821'), ('18', '2', '订单支付', '订单支付成功,金额2499元', '7', '1', '0', '1', '0', '0', '1574217028'), ('19', '2', '订单支付', '订单支付成功,金额228元', '4', '1', '0', '1', '0', '0', '1574228823'), ('20', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574228823'), ('21', '2', '订单支付', '订单支付成功,金额228元', '1', '1', '0', '1', '0', '0', '1574229953'), ('22', '2', '订单发货', '订单已发货', '1', '1', '0', '1', '0', '0', '1574229953'), ('23', '2', '订单支付', '订单支付成功,金额2998.9元', '2', '1', '0', '1', '0', '0', '1574230423'), ('24', '2', '订单支付', '订单支付成功,金额2328元', '3', '1', '0', '1', '0', '0', '1574231202'), ('25', '2', '订单发货', '订单已发货', '3', '1', '0', '1', '0', '0', '1574231202'), ('26', '2', '订单发货', '订单已发货', '2', '1', '0', '1', '0', '0', '1574245991'), ('27', '2', '订单支付', '订单支付成功,金额168元', '1', '1', '0', '1', '0', '0', '1574317708'), ('28', '2', '订单发货', '订单已发货', '1', '1', '0', '1', '0', '0', '1574325104'), ('29', '2', '订单支付', '订单支付成功,金额168元', '2', '1', '0', '1', '0', '0', '1574325611'), ('30', '2', '订单发货', '订单已发货', '2', '1', '0', '1', '0', '0', '1574325635'), ('31', '2', '积分变动', '订单商品完成赠送积分增加11', '0', '0', '0', '1', '0', '0', '1574325644'), ('32', '2', '订单收货', '订单收货成功', '2', '1', '0', '1', '0', '0', '1574325644'), ('33', '2', '订单支付', '订单支付成功,金额168元', '3', '1', '0', '1', '0', '0', '1574326200'), ('34', '2', '订单发货', '订单已发货', '3', '1', '0', '1', '0', '0', '1574326219'), ('35', '2', '积分变动', '订单商品完成赠送积分增加11', '0', '0', '0', '1', '0', '0', '1574326224'), ('36', '2', '订单收货', '订单收货成功', '3', '1', '0', '1', '0', '0', '1574326224'), ('37', '2', '订单支付', '订单支付成功,金额6216元', '4', '1', '0', '1', '0', '0', '1574326382'), ('38', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574326382'), ('39', '2', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '1', '0', '0', '1574326404'), ('40', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574326404'), ('41', '2', '积分变动', '订单商品完成赠送积分增加20', '0', '0', '0', '1', '0', '0', '1574326404'), ('42', '2', '订单收货', '订单收货成功', '4', '1', '0', '1', '0', '0', '1574326404'), ('43', '3', '订单支付', '订单支付成功,金额2328元', '6', '1', '0', '0', '0', '0', '1574683634'), ('44', '3', '订单发货', '订单已发货', '6', '1', '0', '0', '0', '0', '1574683634'), ('45', '3', '订单支付', '订单支付成功,金额2100元', '3', '1', '0', '0', '0', '0', '1574686124'), ('46', '3', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '0', '0', '0', '1574687284'), ('47', '3', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '0', '0', '0', '1574687284'), ('48', '3', '订单收货', '订单收货成功', '6', '1', '0', '0', '0', '0', '1574687284'), ('49', '3', '订单发货', '订单已发货', '3', '1', '0', '0', '0', '0', '1574746869'), ('50', '3', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '0', '0', '0', '1574746886'), ('51', '3', '订单收货', '订单收货成功', '3', '1', '0', '0', '0', '0', '1574746887'), ('52', '4', '订单支付', '订单支付成功,金额2100元', '7', '1', '0', '0', '0', '0', '1574834029'), ('53', '4', '订单发货', '订单已发货', '7', '1', '0', '0', '0', '0', '1574834392'), ('54', '5', '订单支付', '订单支付成功,金额7828元', '13', '1', '0', '0', '0', '0', '1574858244'), ('55', '5', '订单发货', '订单已发货', '13', '1', '0', '0', '0', '0', '1574858244'), ('56', '5', '订单支付', '订单支付成功,金额2100元', '10', '1', '0', '0', '0', '0', '1574858534');
INSERT INTO `s_message` VALUES ('1', '1', '订单支付', '订单支付成功,金额4500元', '1', '1', '0', '0', '0', '0', '1574042904'), ('2', '1', '订单发货', '订单已发货', '1', '1', '0', '0', '0', '0', '1574042910'), ('3', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574164248'), ('4', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167621'), ('5', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167661'), ('6', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574167661'), ('7', '2', '订单支付', '订单支付成功,金额2100元', '4', '1', '0', '1', '0', '0', '1574167698'), ('8', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574167698'), ('9', '2', '订单支付', '订单支付成功,金额13328元', '5', '1', '0', '1', '0', '0', '1574169636'), ('10', '2', '订单发货', '订单已发货', '5', '1', '0', '1', '0', '0', '1574169636'), ('11', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574170448'), ('12', '2', '订单收货', '订单收货成功', '4', '1', '0', '1', '0', '0', '1574170448'), ('13', '2', '积分变动', '订单商品完成赠送积分增加30', '0', '0', '0', '1', '0', '0', '1574170464'), ('14', '2', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '1', '0', '0', '1574170465'), ('15', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574170465'), ('16', '2', '订单收货', '订单收货成功', '5', '1', '0', '1', '0', '0', '1574170465'), ('17', '2', '订单支付', '订单支付成功,金额120元', '6', '1', '0', '1', '0', '0', '1574215821'), ('18', '2', '订单支付', '订单支付成功,金额2499元', '7', '1', '0', '1', '0', '0', '1574217028'), ('19', '2', '订单支付', '订单支付成功,金额228元', '4', '1', '0', '1', '0', '0', '1574228823'), ('20', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574228823'), ('21', '2', '订单支付', '订单支付成功,金额228元', '1', '1', '0', '1', '0', '0', '1574229953'), ('22', '2', '订单发货', '订单已发货', '1', '1', '0', '1', '0', '0', '1574229953'), ('23', '2', '订单支付', '订单支付成功,金额2998.9元', '2', '1', '0', '1', '0', '0', '1574230423'), ('24', '2', '订单支付', '订单支付成功,金额2328元', '3', '1', '0', '1', '0', '0', '1574231202'), ('25', '2', '订单发货', '订单已发货', '3', '1', '0', '1', '0', '0', '1574231202'), ('26', '2', '订单发货', '订单已发货', '2', '1', '0', '1', '0', '0', '1574245991'), ('27', '2', '订单支付', '订单支付成功,金额168元', '1', '1', '0', '1', '0', '0', '1574317708'), ('28', '2', '订单发货', '订单已发货', '1', '1', '0', '1', '0', '0', '1574325104'), ('29', '2', '订单支付', '订单支付成功,金额168元', '2', '1', '0', '1', '0', '0', '1574325611'), ('30', '2', '订单发货', '订单已发货', '2', '1', '0', '1', '0', '0', '1574325635'), ('31', '2', '积分变动', '订单商品完成赠送积分增加11', '0', '0', '0', '1', '0', '0', '1574325644'), ('32', '2', '订单收货', '订单收货成功', '2', '1', '0', '1', '0', '0', '1574325644'), ('33', '2', '订单支付', '订单支付成功,金额168元', '3', '1', '0', '1', '0', '0', '1574326200'), ('34', '2', '订单发货', '订单已发货', '3', '1', '0', '1', '0', '0', '1574326219'), ('35', '2', '积分变动', '订单商品完成赠送积分增加11', '0', '0', '0', '1', '0', '0', '1574326224'), ('36', '2', '订单收货', '订单收货成功', '3', '1', '0', '1', '0', '0', '1574326224'), ('37', '2', '订单支付', '订单支付成功,金额6216元', '4', '1', '0', '1', '0', '0', '1574326382'), ('38', '2', '订单发货', '订单已发货', '4', '1', '0', '1', '0', '0', '1574326382'), ('39', '2', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '1', '0', '0', '1574326404'), ('40', '2', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1574326404'), ('41', '2', '积分变动', '订单商品完成赠送积分增加20', '0', '0', '0', '1', '0', '0', '1574326404'), ('42', '2', '订单收货', '订单收货成功', '4', '1', '0', '1', '0', '0', '1574326404'), ('43', '3', '订单支付', '订单支付成功,金额2328元', '6', '1', '0', '0', '0', '0', '1574683634'), ('44', '3', '订单发货', '订单已发货', '6', '1', '0', '0', '0', '0', '1574683634'), ('45', '3', '订单支付', '订单支付成功,金额2100元', '3', '1', '0', '0', '0', '0', '1574686124'), ('46', '3', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '0', '0', '0', '1574687284'), ('47', '3', '积分变动', '订单商品完成赠送积分增加28', '0', '0', '0', '0', '0', '0', '1574687284'), ('48', '3', '订单收货', '订单收货成功', '6', '1', '0', '0', '0', '0', '1574687284'), ('49', '3', '订单发货', '订单已发货', '3', '1', '0', '0', '0', '0', '1574746869'), ('50', '3', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '0', '0', '0', '1574746886'), ('51', '3', '订单收货', '订单收货成功', '3', '1', '0', '0', '0', '0', '1574746887'), ('52', '4', '订单支付', '订单支付成功,金额2100元', '7', '1', '0', '0', '0', '0', '1574834029'), ('53', '4', '订单发货', '订单已发货', '7', '1', '0', '0', '0', '0', '1574834392'), ('54', '5', '订单支付', '订单支付成功,金额7828元', '13', '1', '0', '0', '0', '0', '1574858244'), ('55', '5', '订单发货', '订单已发货', '13', '1', '0', '0', '0', '0', '1574858244'), ('56', '5', '订单支付', '订单支付成功,金额2100元', '10', '1', '0', '0', '0', '0', '1574858534'), ('57', '10', '订单支付', '订单支付成功,金额3608元', '16', '1', '0', '0', '0', '0', '1575256314'), ('58', '10', '订单发货', '订单已发货', '16', '1', '0', '0', '0', '0', '1575256314'), ('59', '10', '订单支付', '订单支付成功,金额168元', '17', '1', '0', '0', '0', '0', '1575265238'), ('60', '10', '订单支付', '订单支付成功,金额136元', '18', '1', '0', '0', '0', '0', '1575265393'), ('61', '10', '订单支付', '订单支付成功,金额228元', '19', '1', '0', '0', '0', '0', '1575265469'), ('62', '10', '订单支付', '订单支付成功,金额356元', '20', '1', '0', '0', '0', '0', '1575265548');
COMMIT;
-- ----------------------------
......@@ -802,13 +802,13 @@ CREATE TABLE `s_order` (
KEY `user_id` (`user_id`),
KEY `status` (`status`),
KEY `pay_status` (`pay_status`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单';
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单';
-- ----------------------------
-- Records of `s_order`
-- ----------------------------
BEGIN;
INSERT INTO `s_order` VALUES ('1', '20191125192151651019', '3', '', '0', '', '0', '0', '0', '', '1', '0.00', '0.00', '356.00', '356.00', '0.00', '0.00', '0', 'pc', '2', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574680911', '0'), ('2', '20191125193653740262', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '0', '0', '1574681813', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574681813', '0'), ('3', '20191125193928100491', '3', '', '0', '', '1', '4', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'weixin', '2', '1574686124', '1574681968', '1574746868', '0', '1574746886', '0', '0', '0', '1574746916', '0', '0', '1574681968', '1574746916'), ('4', '20191125194407338579', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '3', '0', '1574682247', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574682247', '0'), ('5', '20191125194532130007', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '0', '0', '1574682332', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574682332', '0'), ('6', '20191125200449789902', '3', '', '0', '', '1', '4', '1', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":\"10\",\"type\":1,\"tips\":\"+\\uffe510\\u5143\"},{\"name\":\"VIP1-\\u6ee1\\u51cf\",\"price\":\"10.00\",\"type\":1,\"tips\":\"-\\uffe510.00\\u5143\"}]', '2', '0.00', '0.00', '2328.00', '2328.00', '2328.00', '0.00', '0', 'weixin', '3', '1574683634', '1574683489', '1574683634', '0', '1574687284', '0', '0', '0', '0', '0', '0', '1574683489', '1574687284'), ('7', '20191127132848589920', '4', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'alipay', '2', '1574834029', '1574832528', '1574834392', '0', '0', '0', '0', '0', '0', '0', '0', '1574832528', '1574834392'), ('8', '20191127132951656957', '4', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'alipay', '3', '0', '1574832591', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574832591', '0'), ('9', '20191127133242995976', '4', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'alipay', '0', '0', '1574832762', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574832762', '0'), ('10', '20191127201853730301', '5', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'baidu', '2', '1574858534', '1574857133', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857133', '1574858534'), ('11', '20191127202132779483', '5', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'baidu', '0', '0', '1574857292', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857292', '0'), ('12', '20191127202209395915', '5', 'sss', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'baidu', '3', '0', '1574857329', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857329', '0'), ('13', '20191127203710930397', '5', '', '0', '', '1', '3', '1', '', '3', '0.00', '0.00', '7828.00', '7828.00', '7828.00', '0.00', '0', 'baidu', '3', '1574858244', '1574858230', '1574858244', '0', '0', '0', '0', '0', '0', '0', '0', '1574858230', '1574858244');
INSERT INTO `s_order` VALUES ('1', '20191125192151651019', '3', '', '0', '', '0', '0', '0', '', '1', '0.00', '0.00', '356.00', '356.00', '0.00', '0.00', '0', 'pc', '2', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574680911', '0'), ('2', '20191125193653740262', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '0', '0', '1574681813', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574681813', '0'), ('3', '20191125193928100491', '3', '', '0', '', '1', '4', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'weixin', '2', '1574686124', '1574681968', '1574746868', '0', '1574746886', '0', '0', '0', '1574746916', '0', '0', '1574681968', '1574746916'), ('4', '20191125194407338579', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '3', '0', '1574682247', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574682247', '0'), ('5', '20191125194532130007', '3', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'weixin', '0', '0', '1574682332', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574682332', '0'), ('6', '20191125200449789902', '3', '', '0', '', '1', '4', '1', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":\"10\",\"type\":1,\"tips\":\"+\\uffe510\\u5143\"},{\"name\":\"VIP1-\\u6ee1\\u51cf\",\"price\":\"10.00\",\"type\":1,\"tips\":\"-\\uffe510.00\\u5143\"}]', '2', '0.00', '0.00', '2328.00', '2328.00', '2328.00', '0.00', '0', 'weixin', '3', '1574683634', '1574683489', '1574683634', '0', '1574687284', '0', '0', '0', '0', '0', '0', '1574683489', '1574687284'), ('7', '20191127132848589920', '4', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'alipay', '2', '1574834029', '1574832528', '1574834392', '0', '0', '0', '0', '0', '0', '0', '0', '1574832528', '1574834392'), ('8', '20191127132951656957', '4', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'alipay', '3', '0', '1574832591', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574832591', '0'), ('9', '20191127133242995976', '4', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'alipay', '0', '0', '1574832762', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574832762', '0'), ('10', '20191127201853730301', '5', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '2100.00', '2100.00', '2100.00', '0.00', '0', 'baidu', '2', '1574858534', '1574857133', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857133', '1574858534'), ('11', '20191127202132779483', '5', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'baidu', '0', '0', '1574857292', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857292', '0'), ('12', '20191127202209395915', '5', 'sss', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'baidu', '3', '0', '1574857329', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1574857329', '0'), ('13', '20191127203710930397', '5', '', '0', '', '1', '3', '1', '', '3', '0.00', '0.00', '7828.00', '7828.00', '7828.00', '0.00', '0', 'baidu', '3', '1574858244', '1574858230', '1574858244', '0', '0', '0', '0', '0', '0', '0', '0', '1574858230', '1574858244'), ('14', '20191202110944674838', '10', 'wewe', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'toutiao', '0', '0', '1575256184', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575256184', '0'), ('15', '20191202111035518230', '10', '', '0', '', '1', '1', '0', '', '1', '0.00', '0.00', '2100.00', '2100.00', '0.00', '0.00', '0', 'toutiao', '2', '0', '1575256235', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575256235', '0'), ('16', '20191202111144802321', '10', 'rett', '0', '', '1', '3', '1', '', '10', '0.00', '0.00', '3608.00', '3608.00', '3608.00', '0.00', '0', 'toutiao', '3', '1575256314', '1575256304', '1575256314', '0', '0', '0', '0', '0', '0', '0', '0', '1575256304', '1575256314'), ('17', '20191202133653019518', '10', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '168.00', '168.00', '168.00', '0.00', '0', 'toutiao', '2', '1575265238', '1575265013', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575265013', '1575265238'), ('18', '20191202134312002379', '10', 'sss', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '136.00', '136.00', '136.00', '0.00', '0', 'toutiao', '2', '1575265393', '1575265392', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575265392', '1575265393'), ('19', '20191202134428352084', '10', '', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '228.00', '228.00', '228.00', '0.00', '0', 'toutiao', '2', '1575265469', '1575265468', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575265468', '1575265469'), ('20', '20191202134547217065', '10', 'sss', '0', '', '1', '2', '1', '', '1', '0.00', '0.00', '356.00', '356.00', '356.00', '0.00', '0', 'toutiao', '2', '1575265548', '1575265547', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1575265547', '1575265548');
COMMIT;
-- ----------------------------
......@@ -837,13 +837,13 @@ CREATE TABLE `s_order_address` (
PRIMARY KEY (`id`),
KEY `order_id` (`order_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单地址';
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单地址';
-- ----------------------------
-- Records of `s_order_address`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_address` VALUES ('1', '1', '3', '1', '', 'sky', '021-88888888', '1', '41', '599', '优衣库', '北京市', '朝阳区', '三里屯街道', '116.4464320000', '39.9278590000', '0', '0'), ('2', '2', '3', '3', '', '低调', '13222333333', '4', '84', '1298', '阿达收到', '山西省', '太原市', '万柏林区', '0.0000000000', '0.0000000000', '0', '0'), ('3', '3', '3', '0', '', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '0', '0'), ('4', '5', '3', '3', '', '低调', '13222333333', '4', '84', '1298', '阿达收到', '山西省', '太原市', '万柏林区', '0.0000000000', '0.0000000000', '0', '0'), ('5', '7', '4', '0', '家', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1574832528', '0'), ('6', '9', '4', '4', '', 'devil', '13222335555', '1', '42', '647', 'fdd地方的', '北京市', '丰台区', '南苑街道', '0.0000000000', '0.0000000000', '1574832762', '0'), ('7', '10', '5', '1', '三里屯自提点', 'sky', '021-88888888', '1', '41', '599', '优衣库', '北京市', '朝阳区', '三里屯街道', '116.4464320000', '39.9278590000', '1574857133', '0'), ('8', '11', '5', '5', '总部', '111', '1322222222', '1', '37', '567', 'ddasd', '北京市', '东城区', '东华门街道', '0.0000000000', '0.0000000000', '1574857292', '0');
INSERT INTO `s_order_address` VALUES ('1', '1', '3', '1', '', 'sky', '021-88888888', '1', '41', '599', '优衣库', '北京市', '朝阳区', '三里屯街道', '116.4464320000', '39.9278590000', '0', '0'), ('2', '2', '3', '3', '', '低调', '13222333333', '4', '84', '1298', '阿达收到', '山西省', '太原市', '万柏林区', '0.0000000000', '0.0000000000', '0', '0'), ('3', '3', '3', '0', '', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '0', '0'), ('4', '5', '3', '3', '', '低调', '13222333333', '4', '84', '1298', '阿达收到', '山西省', '太原市', '万柏林区', '0.0000000000', '0.0000000000', '0', '0'), ('5', '7', '4', '0', '家', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1574832528', '0'), ('6', '9', '4', '4', '', 'devil', '13222335555', '1', '42', '647', 'fdd地方的', '北京市', '丰台区', '南苑街道', '0.0000000000', '0.0000000000', '1574832762', '0'), ('7', '10', '5', '1', '三里屯自提点', 'sky', '021-88888888', '1', '41', '599', '优衣库', '北京市', '朝阳区', '三里屯街道', '116.4464320000', '39.9278590000', '1574857133', '0'), ('8', '11', '5', '5', '总部', '111', '1322222222', '1', '37', '567', 'ddasd', '北京市', '东城区', '东华门街道', '0.0000000000', '0.0000000000', '1574857292', '0'), ('9', '14', '10', '6', '', '11', '13222222222', '1', '37', '568', 'wwewe', '北京市', '东城区', '东四街道', '0.0000000000', '0.0000000000', '1575256184', '0'), ('10', '15', '10', '0', '总部', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1575256236', '0'), ('11', '17', '10', '0', '总部', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1575265013', '0'), ('12', '18', '10', '0', '总部', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1575265392', '0'), ('13', '19', '10', '1', '三里屯自提点', 'sky', '021-88888888', '1', '41', '599', '优衣库', '北京市', '朝阳区', '三里屯街道', '116.4464320000', '39.9278590000', '1575265468', '0'), ('14', '20', '10', '0', '总部', 'devil55', '13222333333', '9', '155', '1937', '张江高科', '上海市', '浦东新区', '张江镇', '121.5942780000', '31.2079170000', '1575265548', '0');
COMMIT;
-- ----------------------------
......@@ -917,13 +917,13 @@ CREATE TABLE `s_order_detail` (
KEY `user_id` (`user_id`),
KEY `order_id` (`order_id`),
KEY `goods_id` (`goods_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单详情';
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单详情';
-- ----------------------------
-- Records of `s_order_detail`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_detail` VALUES ('1', '3', '1', '8', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '356.00', '356.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574680911', '0'), ('2', '3', '2', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574681813', '0'), ('3', '3', '3', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574681968', '0'), ('4', '3', '4', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574682247', '0'), ('5', '3', '5', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574682332', '0'), ('6', '3', '6', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574683489', '0'), ('7', '3', '6', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574683489', '0'), ('8', '4', '7', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832528', '0'), ('9', '4', '8', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832591', '0'), ('10', '4', '9', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832762', '0'), ('11', '5', '10', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857133', '0'), ('12', '5', '11', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857292', '0'), ('13', '5', '12', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857329', '0'), ('14', '5', '13', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '6000.00', '5500.00', '5500.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e8c\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u94f6\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"64G\"}]', '1', 'iPhone 6 Plus', '0.00', '', '', '0.00', '0', '1574858230', '0'), ('15', '5', '13', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574858230', '0'), ('16', '5', '13', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574858230', '0');
INSERT INTO `s_order_detail` VALUES ('1', '3', '1', '8', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '356.00', '356.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574680911', '0'), ('2', '3', '2', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574681813', '0'), ('3', '3', '3', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574681968', '0'), ('4', '3', '4', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574682247', '0'), ('5', '3', '5', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574682332', '0'), ('6', '3', '6', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574683489', '0'), ('7', '3', '6', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574683489', '0'), ('8', '4', '7', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832528', '0'), ('9', '4', '8', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832591', '0'), ('10', '4', '9', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574832762', '0'), ('11', '5', '10', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857133', '0'), ('12', '5', '11', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857292', '0'), ('13', '5', '12', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574857329', '0'), ('14', '5', '13', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451576558478.jpg', '6000.00', '5500.00', '5500.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e8c\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u94f6\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"64G\"}]', '1', 'iPhone 6 Plus', '0.00', '', '', '0.00', '0', '1574858230', '0'), ('15', '5', '13', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574858230', '0'), ('16', '5', '13', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1574858230', '0'), ('17', '10', '14', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575256184', '0'), ('18', '10', '15', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575256235', '0'), ('19', '10', '16', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '2100.00', '2100.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575256304', '0'), ('20', '10', '16', '9', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '188.00', '136.00', '272.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '2', '', '0.30', '', '', '0.00', '0', '1575256304', '0'), ('21', '10', '16', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575256304', '0'), ('22', '10', '16', '7', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '168.00', '1008.00', '', '6', '', '0.00', '', '', '0.00', '0', '1575256304', '0'), ('23', '10', '17', '7', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '168.00', '168.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575265013', '0'), ('24', '10', '18', '9', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702272215.jpg', '188.00', '136.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"L\"}]', '1', '', '0.30', '', '', '0.00', '0', '1575265392', '0'), ('25', '10', '19', '10', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '228.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575265468', '0'), ('26', '10', '20', '8', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0.00', '356.00', '356.00', '', '1', '', '0.00', '', '', '0.00', '0', '1575265547', '0');
COMMIT;
-- ----------------------------
......@@ -940,13 +940,13 @@ CREATE TABLE `s_order_extraction_code` (
PRIMARY KEY (`id`),
KEY `order_id` (`order_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单自提取货码关联';
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单自提取货码关联';
-- ----------------------------
-- Records of `s_order_extraction_code`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_extraction_code` VALUES ('1', '1', '3', '0958', '1574680911', '0'), ('2', '3', '3', '2079', '1574681968', '0'), ('3', '7', '4', '3719', '1574832528', '0'), ('4', '10', '5', '9713', '1574857133', '0');
INSERT INTO `s_order_extraction_code` VALUES ('1', '1', '3', '0958', '1574680911', '0'), ('2', '3', '3', '2079', '1574681968', '0'), ('3', '7', '4', '3719', '1574832528', '0'), ('4', '10', '5', '9713', '1574857133', '0'), ('5', '15', '10', '1030', '1575256236', '0'), ('6', '17', '10', '3122', '1575265013', '0'), ('7', '18', '10', '2980', '1575265392', '0'), ('8', '19', '10', '9991', '1575265468', '0'), ('9', '20', '10', '9299', '1575265548', '0');
COMMIT;
-- ----------------------------
......@@ -965,13 +965,13 @@ CREATE TABLE `s_order_fictitious_value` (
KEY `order_id` (`order_id`),
KEY `order_detail_id` (`order_detail_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单虚拟销售数据关联';
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单虚拟销售数据关联';
-- ----------------------------
-- Records of `s_order_fictitious_value`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_fictitious_value` VALUES ('1', '4', '4', '3', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574682247', '0'), ('2', '6', '6', '3', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574683489', '0'), ('3', '6', '7', '3', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '1574683489', '0'), ('4', '8', '9', '4', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574832591', '0'), ('5', '12', '13', '5', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574857329', '0'), ('6', '13', '14', '5', null, '1574858230', '0'), ('7', '13', '15', '5', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574858230', '0'), ('8', '13', '16', '5', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '1574858230', '0');
INSERT INTO `s_order_fictitious_value` VALUES ('1', '4', '4', '3', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574682247', '0'), ('2', '6', '6', '3', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574683489', '0'), ('3', '6', '7', '3', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '1574683489', '0'), ('4', '8', '9', '4', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574832591', '0'), ('5', '12', '13', '5', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574857329', '0'), ('6', '13', '14', '5', null, '1574858230', '0'), ('7', '13', '15', '5', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1574858230', '0'), ('8', '13', '16', '5', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '1574858230', '0'), ('9', '16', '19', '10', '<p><a href=\"https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w\" target=\"_blank\" style=\"box-sizing: border-box; background-color: rgb(255, 255, 255); color: rgb(0, 154, 97); text-decoration-line: none; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px; white-space: normal;\">https://pan.baidu.com/s/18xyUNruvohr5JCdorvaz5w</a><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">&nbsp; &nbsp; &nbsp;提取码&nbsp;</span><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Microsoft Yahei&quot;, sans-serif; font-size: 14px;\">v3y4</span></p>', '1575256304', '0'), ('10', '16', '20', '10', null, '1575256304', '0'), ('11', '16', '21', '10', '<p><a href=\"https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ\" target=\"_blank\">https://pan.baidu.com/s/1XTSM-EJZwEgLmGx3ZyFMGQ</a>&nbsp; &nbsp;<span style=\"font-size: 16px;\"><span style=\"box-sizing: border-box; color: rgb(51, 51, 51); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">提取码:</span><span class=\"am-text-success\" style=\"box-sizing: border-box; color: rgb(94, 185, 94); font-family: &quot;Segoe UI&quot;, &quot;Lucida Grande&quot;, Helvetica, Arial, &quot;Microsoft YaHei&quot;, FreeSans, Arimo, &quot;Droid Sans&quot;, &quot;wenquanyi micro hei&quot;, &quot;Hiragino Sans GB&quot;, &quot;Hiragino Sans GB W3&quot;, FontAwesome, sans-serif; background-color: rgb(255, 255, 255);\">dcs4</span></span></p>', '1575256304', '0'), ('12', '16', '22', '10', null, '1575256304', '0');
COMMIT;
-- ----------------------------
......@@ -994,13 +994,13 @@ CREATE TABLE `s_order_goods_inventory_log` (
KEY `goods_id` (`goods_id`),
KEY `order_status` (`order_status`),
KEY `order_detail_id` (`order_detail_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单商品库存变更日志';
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单商品库存变更日志';
-- ----------------------------
-- Records of `s_order_goods_inventory_log`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_goods_inventory_log` VALUES ('1', '6', '6', '1', '2', '115', '114', '0', '0', '1574683634'), ('2', '6', '7', '10', '2', '19', '18', '0', '0', '1574683634'), ('3', '3', '3', '1', '2', '114', '113', '0', '0', '1574686124'), ('4', '7', '8', '1', '2', '113', '112', '0', '0', '1574834030'), ('5', '13', '14', '2', '2', '1667', '1666', '0', '0', '1574858244'), ('6', '13', '15', '1', '2', '112', '111', '0', '0', '1574858244'), ('7', '13', '16', '10', '2', '18', '17', '0', '0', '1574858244'), ('8', '10', '11', '1', '2', '111', '110', '0', '0', '1574858534');
INSERT INTO `s_order_goods_inventory_log` VALUES ('1', '6', '6', '1', '2', '115', '114', '0', '0', '1574683634'), ('2', '6', '7', '10', '2', '19', '18', '0', '0', '1574683634'), ('3', '3', '3', '1', '2', '114', '113', '0', '0', '1574686124'), ('4', '7', '8', '1', '2', '113', '112', '0', '0', '1574834030'), ('5', '13', '14', '2', '2', '1667', '1666', '0', '0', '1574858244'), ('6', '13', '15', '1', '2', '112', '111', '0', '0', '1574858244'), ('7', '13', '16', '10', '2', '18', '17', '0', '0', '1574858244'), ('8', '10', '11', '1', '2', '111', '110', '0', '0', '1574858534'), ('9', '16', '19', '1', '2', '110', '109', '0', '0', '1575256314'), ('10', '16', '20', '9', '2', '583', '581', '0', '0', '1575256314'), ('11', '16', '21', '10', '2', '17', '16', '0', '0', '1575256314'), ('12', '16', '22', '7', '2', '307', '301', '0', '0', '1575256314'), ('13', '17', '23', '7', '2', '301', '300', '0', '0', '1575265238'), ('14', '18', '24', '9', '2', '581', '580', '0', '0', '1575265393'), ('15', '19', '25', '10', '2', '16', '15', '0', '0', '1575265469'), ('16', '20', '26', '8', '2', '32', '31', '0', '0', '1575265548');
COMMIT;
-- ----------------------------
......@@ -1020,13 +1020,13 @@ CREATE TABLE `s_order_status_history` (
KEY `order_id` (`order_id`),
KEY `original_status` (`original_status`),
KEY `new_status` (`new_status`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单状态历史纪录';
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单状态历史纪录';
-- ----------------------------
-- Records of `s_order_status_history`
-- ----------------------------
BEGIN;
INSERT INTO `s_order_status_history` VALUES ('1', '6', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574683634'), ('2', '6', '2', '3', '收货[待发货-待收货]', '0', '系统', '1574683634'), ('3', '3', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574686124'), ('4', '6', '3', '4', '收货[待收货-已完成]', '3', 'gggggg', '1574687284'), ('5', '3', '2', '3', '收货[待发货-待收货]', '1', 'admin', '1574746869'), ('6', '3', '3', '4', '收货[待收货-已完成]', '3', '雨声', '1574746887'), ('7', '7', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574834029'), ('8', '7', '2', '3', '收货[待发货-待收货]', '1', 'admin', '1574834392'), ('9', '13', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574858244'), ('10', '13', '2', '3', '收货[待发货-待收货]', '0', '系统', '1574858244'), ('11', '10', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574858534');
INSERT INTO `s_order_status_history` VALUES ('1', '6', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574683634'), ('2', '6', '2', '3', '收货[待发货-待收货]', '0', '系统', '1574683634'), ('3', '3', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574686124'), ('4', '6', '3', '4', '收货[待收货-已完成]', '3', 'gggggg', '1574687284'), ('5', '3', '2', '3', '收货[待发货-待收货]', '1', 'admin', '1574746869'), ('6', '3', '3', '4', '收货[待收货-已完成]', '3', '雨声', '1574746887'), ('7', '7', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574834029'), ('8', '7', '2', '3', '收货[待发货-待收货]', '1', 'admin', '1574834392'), ('9', '13', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574858244'), ('10', '13', '2', '3', '收货[待发货-待收货]', '0', '系统', '1574858244'), ('11', '10', '1', '2', '支付[待付款-待发货]', '0', '系统', '1574858534'), ('12', '16', '1', '2', '支付[待付款-待发货]', '0', '系统', '1575256314'), ('13', '16', '2', '3', '收货[待发货-待收货]', '0', '系统', '1575256314'), ('14', '17', '1', '2', '支付[待付款-待发货]', '0', '系统', '1575265238'), ('15', '18', '1', '2', '支付[待付款-待发货]', '0', '系统', '1575265393'), ('16', '19', '1', '2', '支付[待付款-待发货]', '0', '系统', '1575265469'), ('17', '20', '1', '2', '支付[待付款-待发货]', '0', '系统', '1575265548');
COMMIT;
-- ----------------------------
......@@ -1049,13 +1049,13 @@ CREATE TABLE `s_pay_log` (
PRIMARY KEY (`id`),
KEY `order_id` (`order_id`),
KEY `payment` (`payment`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付日志';
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付日志';
-- ----------------------------
-- Records of `s_pay_log`
-- ----------------------------
BEGIN;
INSERT INTO `s_pay_log` VALUES ('1', '3', '6', '', '管理员-admin', '2328.00', '2328.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574683634'), ('2', '3', '3', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574686124'), ('3', '4', '7', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574834029'), ('4', '5', '13', '', '管理员-admin', '7828.00', '7828.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574858244'), ('5', '5', '10', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574858534');
INSERT INTO `s_pay_log` VALUES ('1', '3', '6', '', '管理员-admin', '2328.00', '2328.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574683634'), ('2', '3', '3', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574686124'), ('3', '4', '7', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574834029'), ('4', '5', '13', '', '管理员-admin', '7828.00', '7828.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574858244'), ('5', '5', '10', '', '管理员-admin', '2100.00', '2100.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1574858534'), ('6', '10', '16', '', '管理员-admin', '3608.00', '3608.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1575256314'), ('7', '10', '17', '', '用户-gongfuxiang', '168.00', '168.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1575265238'), ('8', '10', '18', '', '用户-gongfuxiang', '136.00', '136.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1575265393'), ('9', '10', '19', '', '用户-gongfuxiang', '228.00', '228.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1575265469'), ('10', '10', '20', '', '用户-gongfuxiang', '356.00', '356.00', '订单支付', 'DeliveryPayment', '货到付款', '1', '1575265548');
COMMIT;
-- ----------------------------
......@@ -1390,13 +1390,13 @@ CREATE TABLE `s_user` (
KEY `username` (`username`),
KEY `token` (`token`),
KEY `baidu_openid` (`baidu_openid`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户';
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户';
-- ----------------------------
-- Records of `s_user`
-- ----------------------------
BEGIN;
INSERT INTO `s_user` VALUES ('1', '', '', '', '', '', '', '', '', '0', '908000', 'd533280d5409b3abb403a90e28667a37', '', 'qqqqqq', '', '', '', '0', '', '', '', '0', '', '0', '0', '0', '', '0', '1573554820', '1574042862'), ('2', '', '', '', '', '', '', '', '', '0', '430253', '1d00afd3593db4698ee56abe7c1e8a8e', '', 'aaaaaa', '', '', '', '0', '', '', '', '0', '', '158', '0', '0', '', '0', '1574072766', '1574652417'), ('3', '', 'oblE347o4d3-Hwq3HODqona2J4Rk', '', '', '', '', '', '', '0', '453080', '561c9c61dd16388bbfabbcfc05934730', '37ac1d4e97443273b7f160b0f2a963fa', 'gggggg', '雨声', '', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIBvc14pRJGEhWibYSQfw06bPVZaOffOSENEhwDXSeLXvFWsQo2TTxdpsQfjCsibZCHqHBPtUWDobFw/132', 'Shanghai', '', '0', '', '48', '0', '0', '', '0', '1574661840', '1574931469'), ('4', '2088502175420842', '', '', '', '', '', '', '', '0', '266309', 'a4d1d7124a7f6dd74ef4a4a0a349b4c6', '7d62f1320436993b0c7be586ccec7f06', 'hhhhhh', '魔鬼', '', '', '2', 'https://tfs.alipayobjects.com/images/partner/T10d8lXm4dXXXXXXXX', '浙江省', '杭州市', '0', '', '0', '0', '0', '', '0', '1574821219', '1574832991'), ('5', '', '', '', '', '4FnlgNxH_WW_H5ZMbmFIyZ5l33', '', '', '', '0', '114860', 'a9b4d4111016d1af6cb2e65d6e8413ac', '8065eac3012924b0fedd181915f154bb', 'bbbbbb', '', '', '', '0', '', '', '', '0', '', '0', '0', '0', '', '0', '1574856141', '1574857270');
INSERT INTO `s_user` VALUES ('1', '', '', '', '', '', '', '', '', '0', '908000', 'd533280d5409b3abb403a90e28667a37', '', 'qqqqqq', '', '', '', '0', '', '', '', '0', '', '0', '0', '0', '', '0', '1573554820', '1574042862'), ('2', '', '', '', '', '', '', '', '', '0', '430253', '1d00afd3593db4698ee56abe7c1e8a8e', '', 'aaaaaa', '', '', '', '0', '', '', '', '0', '', '158', '0', '0', '', '0', '1574072766', '1574652417'), ('3', '', 'oblE347o4d3-Hwq3HODqona2J4Rk', '', '', '', '', '', '', '0', '453080', '561c9c61dd16388bbfabbcfc05934730', '37ac1d4e97443273b7f160b0f2a963fa', 'gggggg', '雨声', '', '', '2', 'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIBvc14pRJGEhWibYSQfw06bPVZaOffOSENEhwDXSeLXvFWsQo2TTxdpsQfjCsibZCHqHBPtUWDobFw/132', 'Shanghai', '', '0', '', '48', '0', '0', '', '0', '1574661840', '1574931469'), ('4', '2088502175420842', '', '', '', '', '', '', '', '0', '266309', 'a4d1d7124a7f6dd74ef4a4a0a349b4c6', '7d62f1320436993b0c7be586ccec7f06', 'hhhhhh', '魔鬼', '', '', '2', 'https://tfs.alipayobjects.com/images/partner/T10d8lXm4dXXXXXXXX', '浙江省', '杭州市', '0', '', '0', '0', '0', '', '0', '1574821219', '1574832991'), ('9', '', '', '', '', '4FnlgN9sozywp90B5t0SSeY5Gr', '', '', '', '0', '', '', 'e1d4e37941b378b4b73546e19562a924', '', '龚福祥1991', '17602128368', '', '2', 'https://himg.bdimg.com/sys/portrait/item/a82eb9a8b8a3cfe9313939310d34', '', '', '0', '', '0', '0', '0', '', '0', '1575030389', '1575030544'), ('10', '', '', '', '', '', 'PJ2DhqO8cxfmqXfl', '', '', '0', '', '', 'c4acdb7c4c0c3821c227529793cd2b08', '', 'gongfuxiang', '', '', '2', 'http://sf1-ttcdn-tos.pstatp.com/img/mosaic-legacy/3793/3131589739~120x256.image', '', '', '0', '', '0', '0', '0', '', '0', '1575254125', '1575255994');
COMMIT;
-- ----------------------------
......@@ -1422,13 +1422,13 @@ CREATE TABLE `s_user_address` (
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
KEY `is_enable` (`is_delete_time`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户地址';
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户地址';
-- ----------------------------
-- Records of `s_user_address`
-- ----------------------------
BEGIN;
INSERT INTO `s_user_address` VALUES ('1', '1', 'my', 'devil', '17602128368', '4', '88', '1339', '妙川路1111号', '0.0000000000', '0.0000000000', '0', '0', '1573554846', '1573554862'), ('2', '2', '公司', 'devil', '13222333333', '4', '86', '1322', '妙川路1111号华川家园', '0.0000000000', '0.0000000000', '0', '0', '1574073203', '1574678082'), ('3', '3', '家', '低调', '13222333333', '4', '84', '1298', '阿达收到', '0.0000000000', '0.0000000000', '0', '0', '1574676933', '1574682323'), ('4', '4', '', 'devil', '13222335555', '1', '42', '647', 'fdd地方的', '0.0000000000', '0.0000000000', '0', '0', '1574832656', '0'), ('5', '5', '总部', '111', '1322222222', '1', '37', '567', 'ddasd', '0.0000000000', '0.0000000000', '0', '0', '1574857170', '1574857282');
INSERT INTO `s_user_address` VALUES ('1', '1', 'my', 'devil', '17602128368', '4', '88', '1339', '妙川路1111号', '0.0000000000', '0.0000000000', '0', '0', '1573554846', '1573554862'), ('2', '2', '公司', 'devil', '13222333333', '4', '86', '1322', '妙川路1111号华川家园', '0.0000000000', '0.0000000000', '0', '0', '1574073203', '1574678082'), ('3', '3', '家', '低调', '13222333333', '4', '84', '1298', '阿达收到', '0.0000000000', '0.0000000000', '0', '0', '1574676933', '1574682323'), ('4', '4', '', 'devil', '13222335555', '1', '42', '647', 'fdd地方的', '0.0000000000', '0.0000000000', '0', '0', '1574832656', '0'), ('5', '5', '总部', '111', '1322222222', '1', '37', '567', 'ddasd', '0.0000000000', '0.0000000000', '0', '0', '1574857170', '1574857282'), ('6', '10', '', '11', '13222222222', '1', '37', '568', 'wwewe', '0.0000000000', '0.0000000000', '0', '0', '1575256169', '0');
COMMIT;
-- ----------------------------
......@@ -102,6 +102,12 @@
<text class="line"></text>
<text class="text-wrapper">详情</text>
</view>
<!-- 是否详情展示相册 -->
<block a:if="{{common_is_goods_detail_show_photo == 1 && goods_photo.length > 0}}">
<view a:for="{{goods_photo}}" a:key="key" class="goods-detail-photo bg-white">
<image a:if="{{(item.images || null) != null}}" onTap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto dis-block" src="{{item.images}}" mode="widthFix" />
</view>
</block>
<!-- web详情 -->
<view a:if="{{common_app_is_use_mobile_detail == 0}}" class="bg-white">
<rich-text nodes="{{goods.content_web || ''}}"></rich-text>
......
......@@ -34,6 +34,7 @@ Page({
goods_video_is_autoplay: false,
common_app_is_use_mobile_detail: 1,
common_is_goods_detail_show_photo: 0,
// 在线客服
common_app_is_online_service: 0,
......@@ -130,6 +131,7 @@ Page({
show_field_price_text: (data.goods.show_field_price_text == '销售价') ? null : (data.goods.show_field_price_text.replace(/<[^>]+>/g, "") || null),
common_app_is_use_mobile_detail: data.common_app_is_use_mobile_detail || 0,
common_is_goods_detail_show_photo: data.common_is_goods_detail_show_photo || 0,
common_app_is_limitedtimediscount: data.common_app_is_limitedtimediscount || 0,
plugins_limitedtimediscount_data: data.plugins_limitedtimediscount_data || null,
......
......@@ -33,6 +33,7 @@ Page({
goods_video_is_autoplay: false,
common_app_is_use_mobile_detail: 1,
common_is_goods_detail_show_photo: 0,
common_app_is_online_service: 0,
......@@ -124,6 +125,7 @@ Page({
show_field_price_text: data.goods.show_field_price_text == '销售价' ? null : data.goods.show_field_price_text.replace(/<[^>]+>/g, "") || null,
common_app_is_use_mobile_detail: data.common_app_is_use_mobile_detail || 0,
common_is_goods_detail_show_photo: data.common_is_goods_detail_show_photo || 0,
common_app_is_online_service: data.common_app_is_online_service || 0,
common_app_is_limitedtimediscount: data.common_app_is_limitedtimediscount || 0,
......
......@@ -95,6 +95,12 @@
<text class="line"></text>
<text class="text-wrapper">详情</text>
</view>
<!-- 是否详情展示相册 -->
<block s-if="common_is_goods_detail_show_photo == 1 && goods_photo.length > 0">
<view s-for="item, index in goods_photo" s-key="key" class="goods-detail-photo bg-white">
<image s-if="(item.images || null) != null" bindtap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto dis-block" src="{{item.images}}" mode="widthFix" />
</view>
</block>
<!-- web详情 -->
<view s-if="common_app_is_use_mobile_detail == 0" class="bg-white">
<rich-text nodes="{{goods.content_web || ''}}"></rich-text>
......
......@@ -33,6 +33,7 @@ Page({
goods_video_is_autoplay: false,
common_app_is_use_mobile_detail: 1,
common_is_goods_detail_show_photo: 0,
common_app_is_online_service: 0,
......@@ -144,6 +145,7 @@ Page({
show_field_price_text: (data.goods.show_field_price_text == '销售价') ? null : (data.goods.show_field_price_text.replace(/<[^>]+>/g, "") || null),
common_app_is_use_mobile_detail: data.common_app_is_use_mobile_detail || 0,
common_is_goods_detail_show_photo: data.common_is_goods_detail_show_photo || 0,
//common_app_is_online_service: data.common_app_is_online_service || 0,
common_app_is_limitedtimediscount: data.common_app_is_limitedtimediscount || 0,
......
......@@ -102,6 +102,12 @@
<text class="line"></text>
<text class="text-wrapper">详情</text>
</view>
<!-- 是否详情展示相册 -->
<block qq:if="{{common_is_goods_detail_show_photo == 1 && goods_photo.length > 0}}">
<view qq:for="{{goods_photo}}" qq:key="key" class="goods-detail-photo bg-white">
<image qq:if="{{(item.images || null) != null}}" bindtap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto dis-block" src="{{item.images}}" mode="widthFix" />
</view>
</block>
<!-- web详情 -->
<view qq:if="{{common_app_is_use_mobile_detail == 0}}" class="bg-white">
<rich-text nodes="{{goods.content_web || ''}}"></rich-text>
......
......@@ -2,7 +2,7 @@
<import src="/pages/common/nodata.ttml" />
<template is="nodata" data="{{status: 2, msg: '展示型不允许提交订单'}}"></template>
</block>
<block wx:else>
<block tt:else>
<view tt:if="{{goods_list.length > 0}}" class="page">
<!-- 地址 -->
<block tt:if="{{common_site_type == 0 || common_site_type == 2}}">
......
......@@ -5,13 +5,13 @@
</view>
<!-- 2 处理错误 -->
<view wx:elif="{{status == 2}}" class="no-data-box tc">
<view tt:elif="{{status == 2}}" class="no-data-box tc">
<image src="/images/error.png" mode="widthFix" />
<view class="no-data-tips">{{msg || '处理错误'}}</view>
</view>
<!-- 0 默认没有数据 -->
<view wx:elif="{{status == 0}}" class="no-data-box tc">
<view tt:elif="{{status == 0}}" class="no-data-box tc">
<image src="/images/empty.png" mode="widthFix" />
<view class="no-data-tips">{{msg || '没有相关数据'}}</view>
</view>
......
......@@ -10,7 +10,7 @@
<view tt:if="{{item.portion > 0}}" class="progress-bar {{progress_class[index]}}" style="width: {{item.portion}}%;">{{item.name}}</view>
</block>
</block>
<text wx:else class="cr-888">暂无评分</text>
<text tt:else class="cr-888">暂无评分</text>
</view>
</view>
......
......@@ -33,6 +33,7 @@ Page({
goods_video_is_autoplay: false,
common_app_is_use_mobile_detail: 1,
common_is_goods_detail_show_photo: 0,
common_app_is_online_service: 0,
......@@ -144,6 +145,7 @@ Page({
show_field_price_text: (data.goods.show_field_price_text == '销售价') ? null : (data.goods.show_field_price_text.replace(/<[^>]+>/g, "") || null),
common_app_is_use_mobile_detail: data.common_app_is_use_mobile_detail || 0,
common_is_goods_detail_show_photo: data.common_is_goods_detail_show_photo || 0,
//common_app_is_online_service: data.common_app_is_online_service || 0,
common_app_is_limitedtimediscount: data.common_app_is_limitedtimediscount || 0,
......
......@@ -102,6 +102,12 @@
<text class="line"></text>
<text class="text-wrapper">详情</text>
</view>
<!-- 是否详情展示相册 -->
<block tt:if="{{common_is_goods_detail_show_photo == 1 && goods_photo.length > 0}}">
<view tt:for="{{goods_photo}}" tt:key="key" class="goods-detail-photo bg-white">
<image tt:if="{{(item.images || null) != null}}" bindtap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto dis-block" src="{{item.images}}" mode="widthFix" />
</view>
</block>
<!-- web详情 -->
<view tt:if="{{common_app_is_use_mobile_detail == 0}}" class="bg-white">
<rich-text nodes="{{goods.content_web || ''}}"></rich-text>
......@@ -138,7 +144,7 @@
</block>
<!-- 销售型,自提点,虚拟销售 -->
<block wx:else>
<block tt:else>
<button class="bg-warning fl" type="default" bindtap="cart_submit_event" hover-class="none" disabled="{{nav_submit_is_disabled}}">加入购物车</button>
<button class="bg-main fl" type="default" bindtap="buy_submit_event" hover-class="none" disabled="{{nav_submit_is_disabled}}">{{nav_submit_text}}</button>
</block>
......
<view class="content">
<image class="pay-icon" tt:if="{{params.code == '9000'}}" mode="widthFix" src="{{default_round_success_icon}}" />
<image class="pay-icon" wx:else mode="widthFix" src="{{default_round_error_icon}}" />
<image class="pay-icon" tt:else mode="widthFix" src="{{default_round_error_icon}}" />
<text class="dis-block">{{params.msg}}</text>
<view tt:if="{{params.code == '9000'}}" class="price-box">
<text class="sales-price">¥{{params.total_price}}</text>
......
......@@ -15,7 +15,7 @@
<view class="operation br-t oh">
<view class="default fl" bindtap="address_default_event" data-value="{{item.id}}">
<image tt:if="{{is_default == item.id}}" class="item-icon" src="/images/default-select-active-icon.png" mode="widthFix" />
<image wx:else class="item-icon" src="/images/default-select-icon.png" mode="widthFix" />
<image tt:else class="item-icon" src="/images/default-select-icon.png" mode="widthFix" />
<text>设为默认地址</text>
</view>
<button class="fr cr-666 delete-submit br" type="default" size="mini" bindtap="address_delete_event" data-index="{{index}}" data-value="{{item.id}}" hover-class="none">删除</button>
......
......@@ -2,7 +2,7 @@
<view class="nav">
<block tt:for="{{nav_status_list}}" tt:key="key">
<view tt:if="{{nav_status_index == index}}" class="item fl tc cr-main" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
<view wx:else class="item fl tc" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
<view tt:else class="item fl tc" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
</block>
</view>
......@@ -65,5 +65,5 @@
</view>
</view>
</view>
<view wx:else class="payment-list oh bg-white tc cr-888">没有支付方式</view>
<view tt:else class="payment-list oh bg-white tc cr-888">没有支付方式</view>
</component-popup>
\ No newline at end of file
......@@ -2,7 +2,7 @@
<view class="nav">
<block tt:for="{{nav_status_list}}" tt:key="key">
<view tt:if="{{nav_status_index == index}}" class="item fl tc cr-main" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
<view wx:else class="item fl tc" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
<view tt:else class="item fl tc" data-index="{{index}}" bindtap="nav_event">{{item.name}}</view>
</block>
</view>
......
......@@ -33,6 +33,7 @@ Page({
goods_video_is_autoplay: false,
common_app_is_use_mobile_detail: 1,
common_is_goods_detail_show_photo: 0,
popup_share_status: false,
common_app_is_online_service: 0,
......@@ -145,6 +146,7 @@ Page({
show_field_price_text: (data.goods.show_field_price_text == '销售价') ? null : (data.goods.show_field_price_text.replace(/<[^>]+>/g, "") || null),
common_app_is_use_mobile_detail: data.common_app_is_use_mobile_detail || 0,
common_is_goods_detail_show_photo: data.common_is_goods_detail_show_photo || 0,
common_app_is_online_service: data.common_app_is_online_service || 0,
common_app_is_limitedtimediscount: data.common_app_is_limitedtimediscount || 0,
......
......@@ -100,6 +100,12 @@
<text class="line"></text>
<text class="text-wrapper">详情</text>
</view>
<!-- 是否详情展示相册 -->
<block wx:if="{{common_is_goods_detail_show_photo == 1 && goods_photo.length > 0}}">
<view wx:for="{{goods_photo}}" wx:key="key" class="goods-detail-photo bg-white">
<image wx:if="{{(item.images || null) != null}}" bindtap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto dis-block" src="{{item.images}}" mode="widthFix" />
</view>
</block>
<!-- web详情 -->
<view wx:if="{{common_app_is_use_mobile_detail == 0}}" class="bg-white">
<rich-text nodes="{{goods.content_web || ''}}"></rich-text>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册