diff --git a/application/index/controller/Common.php b/application/index/controller/Common.php index 8a54bb9a028bce8bb5ebf781f2b5417872744080..2bed4418a3d4bc3b446ed73f1004852754af3a7e 100755 --- a/application/index/controller/Common.php +++ b/application/index/controller/Common.php @@ -131,6 +131,9 @@ class Common extends Controller // 用户注册邮箱页面钩子 $this->assign('plugins_view_user_email_reg_info_data', Hook::listen('plugins_view_user_email_reg_info', ['hook_name'=>'plugins_view_user_email_reg_info', 'is_backend'=>false, 'user'=>$this->user])); + + // 底部导航上面钩子 + $this->assign('plugins_view_common_footer_top_data', Hook::listen('plugins_view_common_footer_top', ['hook_name'=>'plugins_view_common_footer_top', 'is_backend'=>false, 'user'=>$this->user])); } /** diff --git a/application/index/controller/Index.php b/application/index/controller/Index.php index acc1cbd36da8e89cf304f52ddd85beb231f08b76..6093cde9b0c5ce647b2d0d4e30fa8f4beb689390 100755 --- a/application/index/controller/Index.php +++ b/application/index/controller/Index.php @@ -91,8 +91,9 @@ class Index extends Common // 楼层数据上面 $this->assign('plugins_view_home_floor_top_data', Hook::listen('plugins_view_home_floor_top', [ - 'hook_name' => 'plugins_view_home_floor_top', + 'hook_name' => 'plugins_view_home_floor_top', 'is_backend' => false, + 'user' => $this->user, ])); } } diff --git a/application/index/view/default/index/index.html b/application/index/view/default/index/index.html index 5392b769e9b97390effb78819739aad884d660bc..d9b1e969b72e875e744b4ef96390ba1a0804861c 100755 --- a/application/index/view/default/index/index.html +++ b/application/index/view/default/index/index.html @@ -99,7 +99,7 @@ - + {{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_footer) or $is_footer eq 1)}}
plugins_view_home_floor_top diff --git a/application/index/view/default/public/footer_nav.html b/application/index/view/default/public/footer_nav.html index 59ec8c6d923db3e7297801e311b593d2d8f56607..34f0a3f0d17f03d35a9f4008e092a6ff4cb7eb4d 100755 --- a/application/index/view/default/public/footer_nav.html +++ b/application/index/view/default/public/footer_nav.html @@ -14,79 +14,19 @@
{{/if}} - - - -
- -
+ +{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_footer) or $is_footer eq 1)}} +
+ plugins_view_common_footer_top +
+{{/if}} +{{if !empty($plugins_view_common_footer_top_data) and is_array($plugins_view_common_footer_top_data)}} + {{foreach $plugins_view_common_footer_top_data as $hook}} + {{if is_string($hook) or is_int($hook)}} + {{$hook|raw}} + {{/if}} + {{/foreach}} +{{/if}} diff --git a/application/plugins/answers/Admin.php b/application/plugins/answers/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/answers/Hook.php b/application/plugins/answers/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/answers/Index.php b/application/plugins/answers/Index.php old mode 100644 new mode 100755 diff --git a/application/plugins/answers/Service.php b/application/plugins/answers/Service.php old mode 100644 new mode 100755 diff --git a/application/plugins/answers/config.json b/application/plugins/answers/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/answers/install.sql b/application/plugins/answers/install.sql old mode 100644 new mode 100755 diff --git a/application/plugins/answers/uninstall.sql b/application/plugins/answers/uninstall.sql old mode 100644 new mode 100755 diff --git a/application/plugins/expressforkdn/Admin.php b/application/plugins/expressforkdn/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/expressforkdn/Hook.php b/application/plugins/expressforkdn/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/expressforkdn/config.json b/application/plugins/expressforkdn/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/footercustomerservice/Admin.php b/application/plugins/footercustomerservice/Admin.php new file mode 100755 index 0000000000000000000000000000000000000000..568a990b93e1573a83c0da617ac29f58dd610ad5 --- /dev/null +++ b/application/plugins/footercustomerservice/Admin.php @@ -0,0 +1,199 @@ +assign('data_list', $list['data']); + + $this->assign('data', $ret['data']); + return $this->fetch('../../../plugins/view/footercustomerservice/admin/index'); + } else { + return $ret['msg']; + } + } + + /** + * 编辑页面 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function saveinfo($params = []) + { + $ret = PluginsService::PluginsData('footercustomerservice', null, false); + if($ret['code'] == 0) + { + // 是否 + $is_whether_list = [ + 0 => array('id' => 0, 'name' => '否', 'checked' => true), + 1 => array('id' => 1, 'name' => '是'), + ]; + $this->assign('is_whether_list', $is_whether_list); + + $this->assign('data', $ret['data']); + return $this->fetch('../../../plugins/view/footercustomerservice/admin/saveinfo'); + } else { + return $ret['msg']; + } + } + + /** + * 数据保存 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function save($params = []) + { + $list = Service::DataList(); + $params['data_list'] = $list['data']; + return PluginsService::PluginsDataSave(['plugins'=>'footercustomerservice', 'data'=>$params]); + } + + + + /** + * 数据列表页面 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function dataindex($params = []) + { + $list = Service::DataList(); + if($list['code'] == 0) + { + $this->assign('data_list', $list['data']); + return $this->fetch('../../../plugins/view/footercustomerservice/admin/dataindex'); + } else { + return $list['msg']; + } + } + + /** + * 数据列表编辑 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function datainfo($params = []) + { + // 数据 + $data = []; + if(!empty($params['id'])) + { + $data_params = [ + 'get_id' => $params['id'], + ]; + $ret = Service::DataList($data_params); + $data = empty($ret['data']) ? [] : $ret['data']; + } + $this->assign('data', $data); + + return $this->fetch('../../../plugins/view/footercustomerservice/admin/datainfo'); + } + + /** + * 数据列表保存 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-07T08:21:54+0800 + * @param [array] $params [输入参数] + */ + public function datasave($params = []) + { + // 是否ajax请求 + if(!IS_AJAX) + { + return $this->error('非法访问'); + } + + // 开始处理 + return Service::DataSave($params); + } + + /** + * 数据列表删除 + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-15T11:03:30+0800 + * @param [array] $params [输入参数] + */ + public function datadelete($params = []) + { + // 是否ajax请求 + if(!IS_AJAX) + { + return $this->error('非法访问'); + } + + // 开始处理 + return Service::DataDelete($params); + } + + /** + * 数据列表状态更新 + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2017-01-12T22:23:06+0800 + * @param [array] $params [输入参数] + */ + public function datastatusupdate($params = []) + { + // 是否ajax请求 + if(!IS_AJAX) + { + return $this->error('非法访问'); + } + + // 开始处理 + return Service::DataStatusUpdate($params); + } +} +?> \ No newline at end of file diff --git a/application/plugins/footercustomerservice/Hook.php b/application/plugins/footercustomerservice/Hook.php new file mode 100755 index 0000000000000000000000000000000000000000..d6f69c727efd31ec8208735f56d1a5e8b2680231 --- /dev/null +++ b/application/plugins/footercustomerservice/Hook.php @@ -0,0 +1,165 @@ +StyleCss($params); + break; + + // 底部导航上面钩子 + case 'plugins_view_common_footer_top' : + $ret = $this->FooterServerData($params); + break; + default : + $ret = ''; + } + return $ret; + } + } + + /** + * 客户服务数据 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-06T16:16:34+0800 + * @param [array] $params [输入参数] + */ + public function FooterServerData($params = []) + { + $ret = $this->IsNormal($params); + if($ret['code'] == 0) + { + $this->assign('data_list', $ret['data']); + return $this->fetch('../../../plugins/view/footercustomerservice/index/content'); + } + return ''; + } + + /** + * css + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2019-02-06T16:16:34+0800 + * @param [array] $params [输入参数] + */ + public function StyleCss($params = []) + { + $ret = $this->IsNormal($params); + if($ret['code'] == 0) + { + return ''; + } + return ''; + } + + /** + * 是否正常 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2019-04-23 + * @desc description + * @param [array] $params [输入参数] + */ + private function IsNormal($params = []) + { + // 当前模块/控制器/方法 + $module_name = strtolower(request()->module()); + $controller_name = strtolower(request()->controller()); + $action_name = strtolower(request()->action()); + + // 获取应用数据 + $ret = PluginsService::PluginsData('footercustomerservice'); + if($ret['code'] == 0) + { + // 是否仅首页 + if(isset($ret['data']['is_only_home']) && $ret['data']['is_only_home'] == 1) + { + // 非首页则空 + if($module_name.$controller_name.$action_name != 'indexindexindex') + { + return DataReturn('仅首页展示', -1); + } + } + } + + // 获取图片列表 + $ret = Service::DataList(); + if($ret['code'] == 0 && !empty($ret['data'])) + { + return DataReturn('成功', 0, $ret['data']); + } + + return DataReturn('失败', -100); + } +} +?> \ No newline at end of file diff --git a/application/plugins/footercustomerservice/Service.php b/application/plugins/footercustomerservice/Service.php new file mode 100755 index 0000000000000000000000000000000000000000..fbad68e8b7458c3abf6f5d7d2d1e0120bde46dac --- /dev/null +++ b/application/plugins/footercustomerservice/Service.php @@ -0,0 +1,228 @@ + 'length', + 'key_name' => 'name', + 'checked_data' => '1,8', + 'error_msg' => '名称长度 1~8 个字符', + ], + [ + 'checked_type' => 'length', + 'key_name' => 'desc', + 'checked_data' => '30', + 'error_msg' => '描述格式最多 30 个字符', + ], + [ + 'checked_type' => 'empty', + 'key_name' => 'images_url', + 'checked_data' => '255', + 'error_msg' => '请上传图片', + ], + ]; + $ret = ParamsChecked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 附件 + $data_fields = ['images_url']; + $attachment = ResourcesService::AttachmentParams($params, $data_fields); + + // 数据 + $data = [ + 'name' => $params['name'], + 'desc' => $params['desc'], + 'images_url' => $attachment['data']['images_url'], + 'is_enable' => isset($params['is_enable']) ? intval($params['is_enable']) : 0, + 'operation_time' => time(), + ]; + + // 原有数据 + $ret = PluginsService::PluginsData('footercustomerservice', null, false); + + // 数据id + $data['id'] = (empty($params['id']) || empty($ret['data']) || empty($ret['data']['data_list'][$params['id']])) ? date('YmdHis').GetNumberCode(6) : $params['id']; + $ret['data']['data_list'][$data['id']] = $data; + + // 添加最多添加4条 + if(empty($params['id'])) + { + if(count($ret['data']['data_list']) > 4) + { + return DataReturn('最多添加4条数据', -1); + } + } + + // 保存 + return PluginsService::PluginsDataSave(['plugins'=>'footercustomerservice', 'data'=>$ret['data']]); + } + + /** + * 数据列表删除 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2018-12-18 + * @desc description + * @param [array] $params [输入参数] + */ + public static function DataDelete($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '操作id有误', + ], + ]; + $ret = ParamsChecked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 原有数据 + $ret = PluginsService::PluginsData('footercustomerservice', null, false); + $ret['data']['data_list'] = (empty($ret['data']) || empty($ret['data']['data_list'])) ? [] : $ret['data']['data_list']; + + // 删除操作 + if(isset($ret['data']['data_list'][$params['id']])) + { + unset($ret['data']['data_list'][$params['id']]); + } + + // 保存 + return PluginsService::PluginsDataSave(['plugins'=>'footercustomerservice', 'data'=>$ret['data']]); + } + + /** + * 数据列表删除 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2018-12-18 + * @desc description + * @param [array] $params [输入参数] + */ + public static function DataStatusUpdate($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '操作id有误', + ], + [ + 'checked_type' => 'empty', + 'key_name' => 'field', + 'error_msg' => '操作字段有误', + ], + [ + 'checked_type' => 'in', + 'key_name' => 'state', + 'checked_data' => [0,1], + 'error_msg' => '状态有误', + ], + ]; + $ret = ParamsChecked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 原有数据 + $ret = PluginsService::PluginsData('footercustomerservice', null, false); + $ret['data']['data_list'] = (empty($ret['data']) || empty($ret['data']['data_list'])) ? [] : $ret['data']['data_list']; + + // 删除操作 + if(isset($ret['data']['data_list'][$params['id']]) && isset($ret['data']['data_list'][$params['id']][$params['field']])) + { + $ret['data']['data_list'][$params['id']][$params['field']] = intval($params['state']); + $ret['data']['data_list'][$params['id']]['operation_time'] = time(); + } + + // 保存 + return PluginsService::PluginsDataSave(['plugins'=>'footercustomerservice', 'data'=>$ret['data']]); + } +} +?> \ No newline at end of file diff --git a/application/plugins/footercustomerservice/config.json b/application/plugins/footercustomerservice/config.json new file mode 100755 index 0000000000000000000000000000000000000000..6c422e881cddf479ae517bfb73d71fdda67a22dc --- /dev/null +++ b/application/plugins/footercustomerservice/config.json @@ -0,0 +1,27 @@ +{ + "base":{ + "plugins":"footercustomerservice", + "name":"底部客户服务介绍", + "logo":"\/static\/upload\/images\/plugins_footercustomerservice\/2019\/04\/23\/1555984179784604.jpg", + "author":"Devil", + "author_url":"https:\/\/shopxo.net\/", + "version":"1.0.0", + "desc":"底部客户服务介绍,最多可添加4项", + "apply_terminal":[ + "pc", + "h5" + ], + "apply_version":[ + "1.5.0" + ], + "is_home":false + }, + "hook":{ + "plugins_common_header":[ + "app\\plugins\\footercustomerservice\\Hook" + ], + "plugins_view_common_footer_top":[ + "app\\plugins\\footercustomerservice\\Hook" + ] + } +} \ No newline at end of file diff --git a/application/plugins/freightfee/Admin.php b/application/plugins/freightfee/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/freightfee/Hook.php b/application/plugins/freightfee/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/freightfee/config.json b/application/plugins/freightfee/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/homemiddleadv/Hook.php b/application/plugins/homemiddleadv/Hook.php index 6c71d0acbb3123f83a63d4c9e6b007ca4b531337..e63c1e7456e22f246cc5c3e24cd704bb1c580f0d 100755 --- a/application/plugins/homemiddleadv/Hook.php +++ b/application/plugins/homemiddleadv/Hook.php @@ -13,6 +13,7 @@ namespace app\plugins\homemiddleadv; use think\Controller; use app\plugins\homemiddleadv\Service; use app\service\PluginsService; + /** * 首页中间广告插件 - 钩子入口 * @author Devil diff --git a/application/plugins/homemiddleadv/Service.php b/application/plugins/homemiddleadv/Service.php old mode 100644 new mode 100755 index 8da873342f3a405a7aa6151e65e91a7556dd3278..6fb63f1a3f5a33fe300618794fd1d601736ff94c --- a/application/plugins/homemiddleadv/Service.php +++ b/application/plugins/homemiddleadv/Service.php @@ -12,7 +12,6 @@ namespace app\plugins\homemiddleadv; use app\service\PluginsService; use app\service\ResourcesService; -use app\service\AnswerService; /** * 首页中间广告服务层 diff --git a/application/plugins/homemiddleadv/config.json b/application/plugins/homemiddleadv/config.json old mode 100644 new mode 100755 index d36b31fcdc46b502b9454abe7ff1dafcdbf98a82..f6782cac7f09f310fbbdab2ad7caeaae52b8e08c --- a/application/plugins/homemiddleadv/config.json +++ b/application/plugins/homemiddleadv/config.json @@ -6,7 +6,7 @@ "author":"Devil", "author_url":"https:\/\/shopxo.net\/", "version":"1.0.0", - "desc":"首页中间广告,4个推荐位", + "desc":"首页中间广告,推荐位", "apply_terminal":[ "pc", "h5" diff --git a/application/plugins/newuserreduction/Admin.php b/application/plugins/newuserreduction/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/newuserreduction/Hook.php b/application/plugins/newuserreduction/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/newuserreduction/config.json b/application/plugins/newuserreduction/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/petscms/Pets.php b/application/plugins/petscms/Pets.php old mode 100644 new mode 100755 diff --git a/application/plugins/petscms/Petsadmin.php b/application/plugins/petscms/Petsadmin.php old mode 100644 new mode 100755 diff --git a/application/plugins/petscms/Service.php b/application/plugins/petscms/Service.php old mode 100644 new mode 100755 diff --git a/application/plugins/petscms/install.sql b/application/plugins/petscms/install.sql old mode 100644 new mode 100755 diff --git a/application/plugins/petscms/uninstall.sql b/application/plugins/petscms/uninstall.sql old mode 100644 new mode 100755 diff --git a/application/plugins/share/config.json b/application/plugins/share/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/touristbuy/Admin.php b/application/plugins/touristbuy/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/touristbuy/Hook.php b/application/plugins/touristbuy/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/touristbuy/Index.php b/application/plugins/touristbuy/Index.php old mode 100644 new mode 100755 diff --git a/application/plugins/touristbuy/Service.php b/application/plugins/touristbuy/Service.php old mode 100644 new mode 100755 diff --git a/application/plugins/touristbuy/config.json b/application/plugins/touristbuy/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/ucenter/Admin.php b/application/plugins/ucenter/Admin.php old mode 100644 new mode 100755 diff --git a/application/plugins/ucenter/Api.php b/application/plugins/ucenter/Api.php old mode 100644 new mode 100755 diff --git a/application/plugins/ucenter/Hook.php b/application/plugins/ucenter/Hook.php old mode 100644 new mode 100755 diff --git a/application/plugins/ucenter/config.json b/application/plugins/ucenter/config.json old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/admin/goodsinfo.html b/application/plugins/view/answers/admin/goodsinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/admin/index.html b/application/plugins/view/answers/admin/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/admin/slider.html b/application/plugins/view/answers/admin/slider.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/admin/sliderinfo.html b/application/plugins/view/answers/admin/sliderinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/index/detail.html b/application/plugins/view/answers/index/detail.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/index/index.html b/application/plugins/view/answers/index/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/index/operation.html b/application/plugins/view/answers/index/operation.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/index/popup.html b/application/plugins/view/answers/index/popup.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/answers/index/search.html b/application/plugins/view/answers/index/search.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/expressforkdn/admin/content.html b/application/plugins/view/expressforkdn/admin/content.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/expressforkdn/admin/index.html b/application/plugins/view/expressforkdn/admin/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/expressforkdn/admin/saveinfo.html b/application/plugins/view/expressforkdn/admin/saveinfo.html old mode 100644 new mode 100755 index 8028844ead9396b6ff8b175f332835eb48906cd5..3db784a826d4a732b3b5d5823061d27c69863abf --- a/application/plugins/view/expressforkdn/admin/saveinfo.html +++ b/application/plugins/view/expressforkdn/admin/saveinfo.html @@ -24,8 +24,7 @@ {{if !empty($express_list)}} {{foreach $express_list as $express}} {{if $express.is_enable eq 1}} -

{{$express.name}}

- +

{{$express.name}}

{{/if}} {{/foreach}} {{/if}} diff --git a/application/plugins/view/footercustomerservice/admin/dataindex.html b/application/plugins/view/footercustomerservice/admin/dataindex.html new file mode 100755 index 0000000000000000000000000000000000000000..2824888c0c4f9b97c50bc9c6f5694e2130eb31e7 --- /dev/null +++ b/application/plugins/view/footercustomerservice/admin/dataindex.html @@ -0,0 +1,70 @@ +{{include file="public/header" /}} + + +
+
+ + 底部客户服务介绍 + 返回 + + +
+ +
+ 新增 +
+ + + + + + + + + + + + + + + + {{if !empty($data_list)}} + {{foreach $data_list as $v}} + + + + + + + + + {{/foreach}} + {{else /}} + + {{/if}} + +
图片名称描述是否启用操作时间操作
+ {{if !empty($v['images_url'])}} + + + + {{else /}} + 暂无图片 + {{/if}} + {{$v.name}}{{$v.desc}} + + {{$v.operation_time_time}} + + + + +
没有相关数据
+ +
+
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/plugins/view/footercustomerservice/admin/datainfo.html b/application/plugins/view/footercustomerservice/admin/datainfo.html new file mode 100755 index 0000000000000000000000000000000000000000..c096ff628e29cba816b44dd09a22788bbd6a0a1f --- /dev/null +++ b/application/plugins/view/footercustomerservice/admin/datainfo.html @@ -0,0 +1,59 @@ +{{include file="public/header" /}} + + +
+
+ + + {{if empty($data['id'])}} + 底部客户服务介绍添加 + {{else /}} + 底部客户服务介绍编辑 + {{/if}} + + 返回 + + +
+ +
+
+ + +
+ +
+ + +
+ +
+ +
    +
  • + + +
  • +
+
+上传图片
+
+ +
+ + +
+ +
+ + +
+
+ +
+
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/plugins/view/footercustomerservice/admin/index.html b/application/plugins/view/footercustomerservice/admin/index.html new file mode 100755 index 0000000000000000000000000000000000000000..5600376826a58a7e894e46dd47549cfa2742e455 --- /dev/null +++ b/application/plugins/view/footercustomerservice/admin/index.html @@ -0,0 +1,69 @@ +{{include file="public/header" /}} + + +
+
+ + 底部客户服务介绍 + 返回 + + +
+ +
+
+ 基础数据 + 编辑 +
+
+
+ +
+ {{if isset($data['is_only_home']) and $data['is_only_home'] eq 1}} + 是 + {{else /}} + 否 + {{/if}} +
+
+
+
+ + +
+
+ 服务介绍 + 编辑 +
+
+ {{if !empty($data_list)}} + + {{else /}} + 没有数据 + {{/if}} +
+
+
+
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/plugins/view/footercustomerservice/admin/saveinfo.html b/application/plugins/view/footercustomerservice/admin/saveinfo.html new file mode 100755 index 0000000000000000000000000000000000000000..0a35bca4e80b1de036dfd7c3c11821aab37fcfea --- /dev/null +++ b/application/plugins/view/footercustomerservice/admin/saveinfo.html @@ -0,0 +1,35 @@ +{{include file="public/header" /}} + + +
+
+ +
+ + 底部客户服务介绍 + 返回 + + +
+ +
+ {{foreach $is_whether_list as $v}} + + {{/foreach}} +
+
+ +
+ +
+
+ +
+
+ + + +{{include file="public/footer" /}} + \ No newline at end of file diff --git a/application/plugins/view/footercustomerservice/index/content.html b/application/plugins/view/footercustomerservice/index/content.html new file mode 100644 index 0000000000000000000000000000000000000000..561f2ab606abd012a249bea0ad3d941094e0885c --- /dev/null +++ b/application/plugins/view/footercustomerservice/index/content.html @@ -0,0 +1,21 @@ +{{if !empty($data_list)}} +
+ +
+{{/if}} \ No newline at end of file diff --git a/application/plugins/view/freightfee/admin/index.html b/application/plugins/view/freightfee/admin/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/freightfee/admin/saveinfo.html b/application/plugins/view/freightfee/admin/saveinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/homemiddleadv/admin/dataindex.html b/application/plugins/view/homemiddleadv/admin/dataindex.html old mode 100644 new mode 100755 index f65b16092b51fb2c3274569393f0a93fe780861a..879257047dc45447a6d883be29449fb043fa80c6 --- a/application/plugins/view/homemiddleadv/admin/dataindex.html +++ b/application/plugins/view/homemiddleadv/admin/dataindex.html @@ -36,7 +36,7 @@ {{if !empty($v['images_url'])}} - + {{else /}} 暂无图片 diff --git a/application/plugins/view/homemiddleadv/admin/datainfo.html b/application/plugins/view/homemiddleadv/admin/datainfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/homemiddleadv/admin/index.html b/application/plugins/view/homemiddleadv/admin/index.html index f6f8e5115e0ff60bb1a4fc768b1e4a792cf05870..1f80ef8ffac654ef159d7d5bf697b8ac7aba8425 100755 --- a/application/plugins/view/homemiddleadv/admin/index.html +++ b/application/plugins/view/homemiddleadv/admin/index.html @@ -43,13 +43,15 @@ {{if !empty($data_list)}} {{else /}} diff --git a/application/plugins/view/homemiddleadv/index/content.html b/application/plugins/view/homemiddleadv/index/content.html old mode 100755 new mode 100644 index 27811048c07ccfc409e5e054d6ff525370c5e48e..66de758c989f9344cdcf0bd0f7a38ce06e36f8c0 --- a/application/plugins/view/homemiddleadv/index/content.html +++ b/application/plugins/view/homemiddleadv/index/content.html @@ -2,13 +2,15 @@
diff --git a/application/plugins/view/newuserreduction/admin/index.html b/application/plugins/view/newuserreduction/admin/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/newuserreduction/admin/saveinfo.html b/application/plugins/view/newuserreduction/admin/saveinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/admin/base.html b/application/plugins/view/petscms/admin/base.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/pets/detail.html b/application/plugins/view/petscms/pets/detail.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/pets/help.html b/application/plugins/view/petscms/pets/help.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/pets/helpmap.html b/application/plugins/view/petscms/pets/helpmap.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/pets/index.html b/application/plugins/view/petscms/pets/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/pets/saveinfo.html b/application/plugins/view/petscms/pets/saveinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/petsadmin/help.html b/application/plugins/view/petscms/petsadmin/help.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/petsadmin/helpmap.html b/application/plugins/view/petscms/petsadmin/helpmap.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/petsadmin/index.html b/application/plugins/view/petscms/petsadmin/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/petscms/petsadmin/saveinfo.html b/application/plugins/view/petscms/petsadmin/saveinfo.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/share/index/share.html b/application/plugins/view/share/index/share.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/touristbuy/index/detail.html b/application/plugins/view/touristbuy/index/detail.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/touristbuy/index/index.html b/application/plugins/view/touristbuy/index/index.html old mode 100644 new mode 100755 diff --git a/application/plugins/view/touristbuy/index/success.html b/application/plugins/view/touristbuy/index/success.html old mode 100644 new mode 100755 diff --git a/application/tags.php b/application/tags.php index f1968a534c3ca1188b65e5e911c5ae7156495f07..e0d0baf4a584e419568e01673008c3d3357e4621 100755 --- a/application/tags.php +++ b/application/tags.php @@ -87,6 +87,7 @@ return array ( 0 => 'app\\plugins\\expressforkdn\\Hook', 1 => 'app\\plugins\\touristbuy\\Hook', 2 => 'app\\plugins\\homemiddleadv\\Hook', + 3 => 'app\\plugins\\footercustomerservice\\Hook', ), 'plugins_admin_common_header' => array ( @@ -137,5 +138,9 @@ return array ( array ( 0 => 'app\\plugins\\homemiddleadv\\Hook', ), + 'plugins_view_common_footer_top' => + array ( + 0 => 'app\\plugins\\footercustomerservice\\Hook', + ), ); ?> \ No newline at end of file diff --git a/config/shopxo.sql b/config/shopxo.sql index e527cea6621e4917469ed9d101f05c6f4eebbdd3..c5100b8505a480075b8940f8b116de6153179e39 100644 --- a/config/shopxo.sql +++ b/config/shopxo.sql @@ -1,18 +1,20 @@ /* - Navicat MySQL Data Transfer + Navicat Premium Data Transfer Source Server : 本机 - Source Server Version : 50716 + Source Server Type : MySQL + Source Server Version : 50722 Source Host : localhost - Source Database : shopxo_ttt + Source Database : shopxo_test - Target Server Version : 50716 + Target Server Type : MySQL + Target Server Version : 50722 File Encoding : utf-8 - Date: 04/23/2019 01:02:17 AM + Date: 04/23/2019 11:54:08 AM */ -SET NAMES utf8; +SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- @@ -364,7 +366,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', '125', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


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


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


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


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


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

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



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


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


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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



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

\"d-1.jpg\"/

\"d-2.jpg\"/

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


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


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


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


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


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

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



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


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


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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


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

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



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

\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '0', '290', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1554992248'); COMMIT; -- ---------------------------- @@ -384,7 +386,7 @@ CREATE TABLE `s_goods_browse` ( -- Records of `s_goods_browse` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_browse` VALUES ('1', '7', '91', '1554803230', '1554805470'), ('2', '11', '90', '1554966398', '1555486660'), ('3', '10', '90', '1555048568', '1555911155'), ('4', '9', '90', '1555058265', '1555058265'), ('5', '2', '90', '1555157678', '1555911843'), ('6', '12', '90', '1555159096', '1555159096'), ('7', '5', '90', '1555402359', '1555402359'), ('8', '7', '90', '1555406985', '1555666030'), ('9', '4', '90', '1555491079', '1555491079'), ('10', '6', '90', '1555494278', '1555911840'); +INSERT INTO `s_goods_browse` VALUES ('1', '7', '91', '1554803230', '1554805470'), ('2', '11', '90', '1554966398', '1555486660'), ('3', '10', '90', '1555048568', '1555911155'), ('4', '9', '90', '1555058265', '1555058265'), ('5', '2', '90', '1555157678', '1555911843'), ('6', '12', '90', '1555159096', '1555159096'), ('7', '5', '90', '1555402359', '1555402359'), ('8', '7', '90', '1555406985', '1555991603'), ('9', '4', '90', '1555491079', '1555491079'), ('10', '6', '90', '1555494278', '1555911840'); COMMIT; -- ---------------------------- @@ -899,13 +901,13 @@ CREATE TABLE `s_plugins` ( PRIMARY KEY (`id`), UNIQUE KEY `plugins` (`plugins`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; +) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; -- ---------------------------- -- Records of `s_plugins` -- ---------------------------- BEGIN; -INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550145321', '1551345727'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550156571', '1551345882'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550157860', '1551191932'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1551191930'), ('15', 'commongobacktop', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commongobacktop\\/2019\\/02\\/15\\/1550210425433304.png\",\"is_overall\":\"1\",\"pluginsname\":\"commongobacktop\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1550200998', '1551191928'), ('16', 'commonrightnavigation', '{\"weixin_mini_qrcode_images\":\"\\/static\\/upload\\/images\\/plugins_commonrightnavigation\\/2019\\/02\\/17\\/1550375588899802.jpeg\",\"is_new_window_open\":\"0\",\"is_overall\":\"1\",\"is_goods_page_show_cart\":\"1\",\"pluginsname\":\"commonrightnavigation\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"alipay_mini_qrcode_images\":\"\",\"alipay_fuwu_qrcode_images\":\"\",\"weixin_fuwu_qrcode_images\":\"\"}', '1', '1550222925', '1553680132'), ('17', 'commononlineservice', '{\"title\":\"ShopXO\\u5728\\u7ebf\\u5ba2\\u670d\",\"online_service\":\"\\u552e\\u524d|12345678\\n\\u552e\\u540e|12345678\",\"tel\":\"021-88888888\",\"is_overall\":\"1\",\"bg_color\":\"\",\"distance_top\":\"3\",\"pluginsname\":\"commononlineservice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550393304', '1553650893'), ('20', 'usernotloginhidegoodsprice', '{\"original_price_placeholder\":\"\",\"price_placeholder\":\"\",\"pluginsname\":\"usernotloginhidegoodsprice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1551184852', '1553591863'), ('21', 'answers', '{\"application_name\":\"\\u95ee\\u7b54\",\"images\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/07\\/1551942704326624.jpg\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"images_bottom\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/13\\/1552463137211834.png\",\"url_bottom\":\"https:\\/\\/test.shopxo.net\",\"is_new_window_open_bottom\":\"1\",\"right_top_rec_name\":\"\",\"middle_new_name\":\"\",\"right_top_goods_name\":\"\",\"middle_new_page_number\":\"15\",\"search_page_number\":\"28\",\"home_new_goods_number\":\"12\",\"category_ids\":\"12,7,6,4,3,2,1\",\"pluginsname\":\"answers\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"basesave\"}', '1', '1551853705', '1552724209'), ('23', 'expressforkdn', '{\"ebid\":\"\",\"appkey\":\"\",\"express_ids\":{\"1\":\"\",\"2\":\"\",\"3\":\"\",\"4\":\"ZTO\",\"5\":\"\",\"6\":\"\",\"7\":\"\",\"8\":\"\",\"9\":\"\",\"10\":\"\",\"11\":\"\",\"12\":\"\",\"13\":\"\",\"14\":\"\"},\"pluginsname\":\"expressforkdn\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552358826', '1553161103'), ('25', 'touristbuy', '{\"application_name\":\"\\u8ba2\\u5355\\u67e5\\u8be2\",\"login_name\":\"\\u6e38\\u5ba2\\u767b\\u5f55\",\"nickname\":\"\\u6e38\\u5ba2\",\"query_tips\":\"\\u8bf7\\u8f93\\u5165\\u8ba2\\u5355\\u53f7\\uff0c\\u6536\\u4ef6\\u4eba\\u59d3\\u540d\\uff0c\\u6536\\u4ef6\\u4eba\\u7535\\u8bdd\\u5373\\u53ef\\u67e5\\u770b\\u8ba2\\u5355\\u8be6\\u60c5\",\"is_default_tourist\":\"0\",\"pluginsname\":\"touristbuy\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552656743', '1553486026'), ('26', 'freightfee', '{\"show_name\":\"\\u8fd0\\u8d39\",\"valuation\":\"0\",\"data\":{\"0\":{\"region\":\"default\",\"region_show\":\"default\",\"first\":\"1\",\"first_price\":\"10\",\"continue\":\"1\",\"continue_price\":\"5\"},\"403611\":{\"region\":\"55-56-57-58-59-60-61-62-63-64-65-66-67-68-69-70-71-72\",\"region_show\":\"2\",\"first\":\"1\",\"first_price\":\"6\",\"continue\":\"1\",\"continue_price\":\"3\"}},\"pluginsname\":\"freightfee\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552894438', '1553225909'), ('27', 'newuserreduction', '{\"show_name\":\"\\u65b0\\u7528\\u6237\\u7acb\\u51cf\",\"full_amount\":\"\",\"price\":\"3\",\"is_random\":\"1\",\"pluginsname\":\"newuserreduction\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1553483809', '1553593711'), ('30', 'ucenter', '{\"login_sync_url\":\"\",\"login_async_url\":\"\",\"register_sync_url\":\"\",\"register_async_url\":\"\",\"logout_sync_url\":\"\",\"logout_async_url\":\"\",\"loginpwdupdate_async_url\":\"\",\"accounts_async_url\":\"\",\"pluginsname\":\"ucenter\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1554186010', '1554349799'), ('31', 'petscms', '{\"not_bind_desc\":\"\\u8be5\\u5ba0\\u7269\\u8fd8\\u6ca1\\u6709\\u4e3b\\u4eba\\u9886\\u53d6\\uff0c\\u7acb\\u5373\\u9886\\u53d6\\u53ef\\u7231\\u7684\\u5ba0\\u7269\\u5b9d\\u5b9d\\u54e6\\uff01\\uff01\\uff01\",\"pets_take\":\"\\u6211\\u8981\\u9886\\u53d6\",\"lose_provide\":\"\\u6211\\u8981\\u63d0\\u4f9b\\u4fe1\\u606f\",\"alipay_qrcode_name\":\"\",\"weixin_qrcode_name\":\"\",\"pluginsname\":\"petscms\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1554186010', '1555662725'), ('33', 'share', null, '1', '1555667312', '1555668223'), ('34', 'homemiddleadv', '{\"time_start\":\"2019-04-22 23:34:00\",\"time_end\":\"\",\"pluginsname\":\"homemiddleadv\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"data_list\":{\"20190422180652622612\":{\"name\":\"\\u667a\\u80fdPad\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400479636.jpg\",\"is_enable\":1,\"is_new_window_open\":1,\"operation_time\":1555948343,\"id\":\"20190422180652622612\"},\"20190422183713735111\":{\"name\":\"\\u667a\\u80fd\\u624b\\u673a\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400237551.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555948353,\"id\":\"20190422183713735111\"},\"20190422183742153442\":{\"name\":\"\\u667a\\u80fd\\u7535\\u8f6c\\u63a5\\u5934\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400780646.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555948369,\"id\":\"20190422183742153442\"},\"20190422183756326575\":{\"name\":\"\\u65b0\\u4e00\\u4ee3\\u667a\\u80fd\\u5e73\\u677f\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400647560.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555948385,\"id\":\"20190422183756326575\"}}}', '1', '1555917493', '1555948385'); +INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550145321', '1551345727'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550156571', '1551345882'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550157860', '1551191932'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1551191930'), ('15', 'commongobacktop', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commongobacktop\\/2019\\/02\\/15\\/1550210425433304.png\",\"is_overall\":\"1\",\"pluginsname\":\"commongobacktop\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1550200998', '1551191928'), ('16', 'commonrightnavigation', '{\"weixin_mini_qrcode_images\":\"\\/static\\/upload\\/images\\/plugins_commonrightnavigation\\/2019\\/02\\/17\\/1550375588899802.jpeg\",\"is_new_window_open\":\"0\",\"is_overall\":\"1\",\"is_goods_page_show_cart\":\"1\",\"pluginsname\":\"commonrightnavigation\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"alipay_mini_qrcode_images\":\"\",\"alipay_fuwu_qrcode_images\":\"\",\"weixin_fuwu_qrcode_images\":\"\"}', '1', '1550222925', '1553680132'), ('17', 'commononlineservice', '{\"title\":\"ShopXO\\u5728\\u7ebf\\u5ba2\\u670d\",\"online_service\":\"\\u552e\\u524d|12345678\\n\\u552e\\u540e|12345678\",\"tel\":\"021-88888888\",\"is_overall\":\"1\",\"bg_color\":\"\",\"distance_top\":\"3\",\"pluginsname\":\"commononlineservice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550393304', '1553650893'), ('20', 'usernotloginhidegoodsprice', '{\"original_price_placeholder\":\"\",\"price_placeholder\":\"\",\"pluginsname\":\"usernotloginhidegoodsprice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1551184852', '1553591863'), ('21', 'answers', '{\"application_name\":\"\\u95ee\\u7b54\",\"images\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/07\\/1551942704326624.jpg\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"images_bottom\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/13\\/1552463137211834.png\",\"url_bottom\":\"https:\\/\\/test.shopxo.net\",\"is_new_window_open_bottom\":\"1\",\"right_top_rec_name\":\"\",\"middle_new_name\":\"\",\"right_top_goods_name\":\"\",\"middle_new_page_number\":\"15\",\"search_page_number\":\"28\",\"home_new_goods_number\":\"12\",\"category_ids\":\"12,7,6,4,3,2,1\",\"pluginsname\":\"answers\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"basesave\"}', '1', '1551853705', '1552724209'), ('23', 'expressforkdn', '{\"ebid\":\"\",\"appkey\":\"\",\"express_ids\":{\"1\":\"\",\"2\":\"\",\"3\":\"\",\"4\":\"ZTO\",\"5\":\"\",\"6\":\"\",\"7\":\"\",\"8\":\"\",\"9\":\"\",\"10\":\"\",\"11\":\"\",\"12\":\"\",\"13\":\"\",\"14\":\"\"},\"pluginsname\":\"expressforkdn\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552358826', '1553161103'), ('25', 'touristbuy', '{\"application_name\":\"\\u8ba2\\u5355\\u67e5\\u8be2\",\"login_name\":\"\\u6e38\\u5ba2\\u767b\\u5f55\",\"nickname\":\"\\u6e38\\u5ba2\",\"query_tips\":\"\\u8bf7\\u8f93\\u5165\\u8ba2\\u5355\\u53f7\\uff0c\\u6536\\u4ef6\\u4eba\\u59d3\\u540d\\uff0c\\u6536\\u4ef6\\u4eba\\u7535\\u8bdd\\u5373\\u53ef\\u67e5\\u770b\\u8ba2\\u5355\\u8be6\\u60c5\",\"is_default_tourist\":\"0\",\"pluginsname\":\"touristbuy\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552656743', '1553486026'), ('26', 'freightfee', '{\"show_name\":\"\\u8fd0\\u8d39\",\"valuation\":\"0\",\"data\":{\"0\":{\"region\":\"default\",\"region_show\":\"default\",\"first\":\"1\",\"first_price\":\"10\",\"continue\":\"1\",\"continue_price\":\"5\"},\"403611\":{\"region\":\"55-56-57-58-59-60-61-62-63-64-65-66-67-68-69-70-71-72\",\"region_show\":\"2\",\"first\":\"1\",\"first_price\":\"6\",\"continue\":\"1\",\"continue_price\":\"3\"}},\"pluginsname\":\"freightfee\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552894438', '1553225909'), ('27', 'newuserreduction', '{\"show_name\":\"\\u65b0\\u7528\\u6237\\u7acb\\u51cf\",\"full_amount\":\"\",\"price\":\"3\",\"is_random\":\"1\",\"pluginsname\":\"newuserreduction\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1553483809', '1553593711'), ('30', 'ucenter', '{\"login_sync_url\":\"\",\"login_async_url\":\"\",\"register_sync_url\":\"\",\"register_async_url\":\"\",\"logout_sync_url\":\"\",\"logout_async_url\":\"\",\"loginpwdupdate_async_url\":\"\",\"accounts_async_url\":\"\",\"pluginsname\":\"ucenter\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1554186010', '1554349799'), ('31', 'petscms', '{\"not_bind_desc\":\"\\u8be5\\u5ba0\\u7269\\u8fd8\\u6ca1\\u6709\\u4e3b\\u4eba\\u9886\\u53d6\\uff0c\\u7acb\\u5373\\u9886\\u53d6\\u53ef\\u7231\\u7684\\u5ba0\\u7269\\u5b9d\\u5b9d\\u54e6\\uff01\\uff01\\uff01\",\"pets_take\":\"\\u6211\\u8981\\u9886\\u53d6\",\"lose_provide\":\"\\u6211\\u8981\\u63d0\\u4f9b\\u4fe1\\u606f\",\"alipay_qrcode_name\":\"\",\"weixin_qrcode_name\":\"\",\"pluginsname\":\"petscms\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1554186010', '1555662725'), ('33', 'share', null, '1', '1555667312', '1555668223'), ('34', 'homemiddleadv', '{\"time_start\":\"2019-04-22 23:34:00\",\"time_end\":\"\",\"pluginsname\":\"homemiddleadv\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"data_list\":{\"20190422180652622612\":{\"name\":\"\\u667a\\u80fdPad\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400479636.jpg\",\"is_enable\":1,\"is_new_window_open\":1,\"operation_time\":1555988052,\"id\":\"20190422180652622612\"},\"20190422183713735111\":{\"name\":\"\\u667a\\u80fd\\u624b\\u673a\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400237551.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555988047,\"id\":\"20190422183713735111\"},\"20190422183742153442\":{\"name\":\"\\u667a\\u80fd\\u7535\\u8f6c\\u63a5\\u5934\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400780646.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555948369,\"id\":\"20190422183742153442\"},\"20190422183756326575\":{\"name\":\"\\u65b0\\u4e00\\u4ee3\\u667a\\u80fd\\u5e73\\u677f\",\"url\":\"\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_homemiddleadv\\/2019\\/04\\/22\\/1555929400647560.jpg\",\"is_enable\":1,\"is_new_window_open\":0,\"operation_time\":1555948385,\"id\":\"20190422183756326575\"}}}', '1', '1555917493', '1555988052'), ('35', 'footercustomerservice', '{\"is_only_home\":\"0\",\"pluginsname\":\"footercustomerservice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\",\"data_list\":{\"20190423101219612886\":{\"name\":\"\\u7269\\u884c\\u5929\\u4e0b\",\"desc\":\"\\u591a\\u4ed3\\u76f4\\u53d1 \\u6781\\u901f\\u914d\\u9001\\u591a\\u4ed3\\u76f4\\u53d1 \\u6781\\u901f\\u914d\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_footercustomerservice\\/2019\\/04\\/23\\/1555990891552781.png\",\"is_enable\":1,\"operation_time\":1555991636,\"id\":\"20190423101219612886\"},\"20190423101429924371\":{\"name\":\"\\u7cbe\\u81f4\\u670d\\u52a1\",\"desc\":\"\\u7cbe\\u81f4\\u670d\\u52a1 \\u552e\\u540e\\u4fdd\\u969c\\u7cbe\\u81f4\\u670d\\u52a1 \\u552e\\u540e\\u4fdd\\u969c\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_footercustomerservice\\/2019\\/04\\/23\\/1555990891827973.png\",\"is_enable\":1,\"operation_time\":1555990919,\"id\":\"20190423101429924371\"},\"20190423101441929067\":{\"name\":\"\\u9000\\u6362\\u65e0\\u5fe7\",\"desc\":\"\\u653e\\u5fc3\\u8d2d\\u7269 \\u9000\\u8fd8\\u65e0\\u5fe7\\u653e\\u5fc3\\u8d2d\\u7269 \\u9000\\u8fd8\\u65e0\\u5fe7\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_footercustomerservice\\/2019\\/04\\/23\\/1555990891594648.png\",\"is_enable\":1,\"operation_time\":1555990931,\"id\":\"20190423101441929067\"},\"20190423101454021035\":{\"name\":\"\\u6ee1\\u51cf\\u6d3b\\u52a8\",\"desc\":\"\\u6ee1500\\u5143\\u7acb\\u51cf90\\uff0c\\u65b0\\u7528\\u6237\\u7acb\\u51cf200\",\"images_url\":\"\\/static\\/upload\\/images\\/plugins_footercustomerservice\\/2019\\/04\\/23\\/1555991139659862.png\",\"is_enable\":1,\"operation_time\":1555991141,\"id\":\"20190423101454021035\"}}}', '1', '1555984266', '1555991636'); COMMIT; -- ---------------------------- diff --git a/public/static/plugins/css/footercustomerservice/admin.css b/public/static/plugins/css/footercustomerservice/admin.css new file mode 100755 index 0000000000000000000000000000000000000000..679fad2dc9d6344b05ccdd0269fcf28aba10232a --- /dev/null +++ b/public/static/plugins/css/footercustomerservice/admin.css @@ -0,0 +1,61 @@ +/** + * 首页 + */ +.footercustomerservice-content .items { + margin: 10px 0 20px 0; + border-bottom: 1px dashed #f1f1f1; + padding-bottom: 20px; +} +.footercustomerservice-content .items .immages-tag { + text-align: left; +} +.footercustomerservice-content .items .immages-tag img { + max-width: 100%; + border: 1px dashed #eee; + padding: 5px; +} +.footercustomerservice-content .edit-submit { + margin-bottom: 20px; +} +.footercustomerservice-content img { + max-width: 100%; +} +.footercustomerservice-content .am-slider-c3 .am-slider-counter { + background-color: #d13a49; +} +@media only screen and (min-width:640px) { + .footercustomerservice-data-list .am-gallery-overlay .am-gallery-item img { + width: auto; + max-height: 150px; + } +} + +/** + * 服务介绍列表 + */ +.customer-service .am-gallery-overlay .am-gallery-item img { + width: 50px; + float: left; +} +.customer-service .am-gallery-overlay .am-gallery-item .base { + margin-left: 60px; +} +.customer-service .am-gallery-overlay .am-gallery-item .base .title { + font-weight: 500; + font-size: 16px; + color: #505050; + margin: 0; +} +.customer-service .am-gallery-overlay .am-gallery-item .base .desc { + color: #999; + margin: 5px 0 0 0; +} +.am-footer-default { + margin-top: 0; +} +@media only screen and (max-width:640px) { + .customer-service .am-gallery-overlay .am-gallery-item { + border-bottom: 1px solid #f0f0f0; + padding-bottom: 10px; + } +} \ No newline at end of file diff --git a/public/static/plugins/css/footercustomerservice/index.html b/public/static/plugins/css/footercustomerservice/index.html new file mode 100755 index 0000000000000000000000000000000000000000..0519ecba6ea913e21689ec692e81e9e4973fbf73 --- /dev/null +++ b/public/static/plugins/css/footercustomerservice/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/static/plugins/css/homemiddleadv/admin.css b/public/static/plugins/css/homemiddleadv/admin.css index 80e67a02b3849564a899ae5b992a96bd25dea08a..6a8fae32aebacc4ad008bd53cefa6dbabfa5d220 100755 --- a/public/static/plugins/css/homemiddleadv/admin.css +++ b/public/static/plugins/css/homemiddleadv/admin.css @@ -43,7 +43,7 @@ } /** - * 幻灯片编辑 + * 数据列表编辑 */ ul.plug-file-upload-view li { width: 160px; diff --git a/public/static/plugins/images/footercustomerservice/default-images.jpg b/public/static/plugins/images/footercustomerservice/default-images.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3eb8295d5dccdf43cc0f267496b92adecb86493 Binary files /dev/null and b/public/static/plugins/images/footercustomerservice/default-images.jpg differ diff --git a/public/static/plugins/images/footercustomerservice/index.html b/public/static/plugins/images/footercustomerservice/index.html new file mode 100755 index 0000000000000000000000000000000000000000..0519ecba6ea913e21689ec692e81e9e4973fbf73 --- /dev/null +++ b/public/static/plugins/images/footercustomerservice/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555984179784604.jpg b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555984179784604.jpg new file mode 100755 index 0000000000000000000000000000000000000000..79b97fcb08a273bd06c84c3c783275bf02c511a4 Binary files /dev/null and b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555984179784604.jpg differ diff --git a/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891552781.png b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891552781.png new file mode 100644 index 0000000000000000000000000000000000000000..063f0cf94023f63967c72416b0bae212ac7ea344 Binary files /dev/null and b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891552781.png differ diff --git a/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891594648.png b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891594648.png new file mode 100644 index 0000000000000000000000000000000000000000..df8d4bda3587536ac05f17784de1bfc0d0056dae Binary files /dev/null and b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891594648.png differ diff --git a/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891827973.png b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891827973.png new file mode 100644 index 0000000000000000000000000000000000000000..389fda8910f301019567ec5ccf35e6f879e7bcac Binary files /dev/null and b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555990891827973.png differ diff --git a/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555991139659862.png b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555991139659862.png new file mode 100644 index 0000000000000000000000000000000000000000..d7dc52ca26f6baada9ad059445e83020dd0b23bc Binary files /dev/null and b/public/static/upload/images/plugins_footercustomerservice/2019/04/23/1555991139659862.png differ