diff --git a/service/Application/Admin/Controller/BrandCategoryController.class.php b/service/Application/Admin/Controller/BrandCategoryController.class.php new file mode 100755 index 000000000..e3a19f14e --- /dev/null +++ b/service/Application/Admin/Controller/BrandCategoryController.class.php @@ -0,0 +1,185 @@ +Is_Login(); + + // 权限校验 + $this->Is_Power(); + } + + /** + * [Index 品牌分类列表] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-06T21:31:53+0800 + */ + public function Index() + { + $this->assign('common_is_enable_list', L('common_is_enable_list')); + $this->display('Index'); + } + + /** + * [GetNodeSon 获取节点子列表] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T15:19:45+0800 + */ + public function GetNodeSon() + { + // 是否ajax请求 + if(!IS_AJAX) + { + $this->error(L('common_unauthorized_access')); + } + + // 获取数据 + $field = array('id', 'name', 'sort', 'is_enable'); + $data = M('BrandCategory')->field($field)->where(array('pid'=>intval(I('id', 0))))->select(); + if(!empty($data)) + { + foreach($data as $k=>$v) + { + $data[$k]['is_son'] = $this->IsExistSon($v['id']); + $data[$k]['ajax_url'] = U('Admin/BrandCategory/GetNodeSon', array('id'=>$v['id'])); + $data[$k]['delete_url'] = U('Admin/BrandCategory/Delete'); + $data[$k]['json'] = json_encode($v); + } + } + $msg = empty($data) ? L('common_not_data_tips') : L('common_operation_success'); + $this->ajaxReturn($msg, 0, $data); + } + + /** + * [IsExistSon 节点是否存在子数据] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T15:22:47+0800 + * @param [int] $id [节点id] + * @return [string] [有数据ok, 则no] + */ + private function IsExistSon($id) + { + if(!empty($id)) + { + return (M('BrandCategory')->where(array('pid'=>$id))->count() > 0) ? 'ok' : 'no'; + } + return 'no'; + } + + /** + * [Save 品牌分类保存] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T22:36:12+0800 + */ + public function Save() + { + // 是否ajax请求 + if(!IS_AJAX) + { + $this->error(L('common_unauthorized_access')); + } + + // id为空则表示是新增 + $m = D('BrandCategory'); + + // 公共额外数据处理 + $m->sort = intval(I('sort')); + + // 添加 + if(empty($_POST['id'])) + { + if($m->create($_POST, 1)) + { + // 额外数据处理 + $m->add_time = time(); + $m->name = I('name'); + + // 写入数据库 + if($m->add()) + { + $this->ajaxReturn(L('common_operation_add_success')); + } else { + $this->ajaxReturn(L('common_operation_add_error'), -100); + } + } + } else { + // 编辑 + if($m->create($_POST, 2)) + { + // 额外数据处理 + $m->name = I('name'); + $m->upd_time = time(); + + // 移除 id + unset($m->id); + + // 更新数据库 + if($m->where(array('id'=>I('id')))->save()) + { + $this->ajaxReturn(L('common_operation_edit_success')); + } else { + $this->ajaxReturn(L('common_operation_edit_error'), -100); + } + } + } + $this->ajaxReturn($m->getError(), -1); + } + + /** + * [Delete 品牌分类删除] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T22:36:12+0800 + */ + public function Delete() + { + if(!IS_AJAX) + { + $this->error(L('common_unauthorized_access')); + } + + $m = D('BrandCategory'); + if($m->create($_POST, 5)) + { + if($m->delete(I('id'))) + { + $this->ajaxReturn(L('common_operation_delete_success')); + } else { + $this->ajaxReturn(L('common_operation_delete_error'), -100); + } + } else { + $this->ajaxReturn($m->getError(), -1); + } + } +} +?> \ No newline at end of file diff --git a/service/Application/Admin/Controller/BrandController.class.php b/service/Application/Admin/Controller/BrandController.class.php new file mode 100755 index 000000000..7c65a0782 --- /dev/null +++ b/service/Application/Admin/Controller/BrandController.class.php @@ -0,0 +1,333 @@ +Is_Login(); + + // 权限校验 + $this->Is_Power(); + } + + /** + * [Index 品牌列表] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-06T21:31:53+0800 + */ + public function Index() + { + // 参数 + $param = array_merge($_POST, $_GET); + + // 模型对象 + $m = M('Brand'); + + // 条件 + $where = $this->GetIndexWhere(); + + // 分页 + $number = MyC('admin_page_number'); + $page_param = array( + 'number' => $number, + 'total' => $m->where($where)->count(), + 'where' => $param, + 'url' => U('Admin/Brand/Index'), + ); + $page = new \Library\Page($page_param); + + // 获取列表 + $list = $this->SetDataHandle($m->where($where)->limit($page->GetPageStarNumber(), $number)->order('id desc')->select()); + + // 参数 + $this->assign('param', $param); + + // 分页 + $this->assign('page_html', $page->GetPageHtml()); + + // 是否启用 + $this->assign('common_is_enable_list', L('common_is_enable_list')); + + // 品牌分类 + $brand_category = M('BrandCategory')->where(['is_enable'=>1])->field('id,name')->select(); + $this->assign('brand_category', $brand_category); + + // 数据列表 + $this->assign('list', $list); + $this->display('Index'); + } + + /** + * [SetDataHandle 数据处理] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-29T21:27:15+0800 + * @param [array] $data [轮播图片数据] + * @return [array] [处理好的数据] + */ + private function SetDataHandle($data) + { + if(!empty($data)) + { + $common_is_enable_tips = L('common_is_enable_tips'); + foreach($data as &$v) + { + // 是否启用 + $v['is_enable_text'] = $common_is_enable_tips[$v['is_enable']]['name']; + + // 分类名称 + $v['brand_category_text'] = M('BrandCategory')->where(['id'=>$v['brand_category_id']])->getField('name'); + + // logo + $v['logo'] = empty($v['logo']) ? '' : C('IMAGE_HOST').$v['logo']; + + // 添加时间 + $v['add_time_text'] = date('Y-m-d H:i:s', $v['add_time']); + + // 更新时间 + $v['upd_time_text'] = date('Y-m-d H:i:s', $v['upd_time']); + } + } + return $data; + } + + /** + * [GetIndexWhere 列表条件] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-10T22:16:29+0800 + */ + private function GetIndexWhere() + { + $where = array(); + + // 模糊 + if(!empty($_REQUEST['keyword'])) + { + $where['name'] = array('like', '%'.I('keyword').'%'); + } + + // 是否更多条件 + if(I('is_more', 0) == 1) + { + if(I('is_enable', -1) > -1) + { + $where['is_enable'] = intval(I('is_enable', 0)); + } + if(I('brand_category_id', -1) > -1) + { + $where['brand_category_id'] = intval(I('brand_category_id', 0)); + } + + // 表达式 + if(!empty($_REQUEST['time_start'])) + { + $where['add_time'][] = array('gt', strtotime(I('time_start'))); + } + if(!empty($_REQUEST['time_end'])) + { + $where['add_time'][] = array('lt', strtotime(I('time_end'))); + } + } + return $where; + } + + /** + * [SaveInfo 添加/编辑页面] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-14T21:37:02+0800 + */ + public function SaveInfo() + { + // 轮播图片信息 + $data = empty($_REQUEST['id']) ? array() : M('Brand')->find(I('id')); + $this->assign('data', $data); + + // 是否启用 + $this->assign('common_is_enable_list', L('common_is_enable_list')); + + // 品牌分类 + $brand_category = M('BrandCategory')->where(['is_enable'=>1])->field('id,name')->select(); + $this->assign('brand_category', $brand_category); + + // 参数 + $this->assign('param', array_merge($_POST, $_GET)); + + $this->display('SaveInfo'); + } + + /** + * [Save 品牌保存] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T22:36:12+0800 + */ + public function Save() + { + // 是否ajax请求 + if(!IS_AJAX) + { + $this->error(L('common_unauthorized_access')); + } + + // 图片 + if(!empty($_FILES['file_logo'])) + { + // 文件上传校验 + $error = FileUploadError('file_logo'); + if($error !== true) + { + $this->ajaxReturn($error, -1); + } + + // 文件类型 + list($type, $suffix) = explode('/', $_FILES['file_logo']['type']); + $path = 'Public'.DS.'Upload'.DS.'brand'.DS.date('Y').DS.date('m').DS; + if(!is_dir($path)) + { + mkdir(ROOT_PATH.$path, 0777, true); + } + $filename = date('YmdHis').GetNumberCode(6).'.'.$suffix; + $file_logo = $path.$filename; + + if(move_uploaded_file($_FILES['file_logo']['tmp_name'], ROOT_PATH.$file_logo)) + { + $_POST['logo'] = DS.$file_logo; + } + } + + // id为空则表示是新增 + $m = D('Brand'); + + // 公共额外数据处理 + $_POST['is_enable'] = intval(I('is_enable', 0)); + + // 添加 + if(empty($_POST['id'])) + { + if($m->create($_POST, 1)) + { + // 额外数据处理 + $m->add_time = time(); + $m->sort = intval(I('sort')); + $m->brand_category_id = intval(I('brand_category_id')); + $m->website_url = I('website_url'); + $m->name = I('name'); + + // 写入数据库 + if($m->add()) + { + $this->ajaxReturn(L('common_operation_add_success')); + } else { + $this->ajaxReturn(L('common_operation_add_error'), -100); + } + } + } else { + // 编辑 + if($m->create($_POST, 2)) + { + // 额外数据处理 + $m->upd_time = time(); + $m->sort = intval(I('sort')); + $m->brand_category_id = intval(I('brand_category_id')); + $m->website_url = I('website_url'); + $m->name = I('name'); + + // 移除 id + unset($m->id); + + // 更新数据库 + if($m->where(array('id'=>I('id')))->save()) + { + $this->ajaxReturn(L('common_operation_edit_success')); + } else { + $this->ajaxReturn(L('common_operation_edit_error'), -100); + } + } + } + $this->ajaxReturn($m->getError(), -1); + } + + /** + * [Delete 品牌删除] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-25T22:36:12+0800 + */ + public function Delete() + { + if(!IS_AJAX) + { + $this->error(L('common_unauthorized_access')); + } + + $m = D('Brand'); + if($m->create($_POST, 5)) + { + $id = I('id'); + + // 删除 + if($m->delete($id)) + { + $this->ajaxReturn(L('common_operation_delete_success')); + } else { + $this->ajaxReturn(L('common_operation_delete_error'), -100); + } + } else { + $this->ajaxReturn($m->getError(), -1); + } + } + + /** + * [StateUpdate 状态更新] + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2017-01-12T22:23:06+0800 + */ + public function StateUpdate() + { + // 参数 + if(empty($_POST['id']) || !isset($_POST['state'])) + { + $this->ajaxReturn(L('common_param_error'), -1); + } + + // 数据更新 + if(M('Brand')->where(array('id'=>I('id')))->save(array('is_enable'=>I('state')))) + { + $this->ajaxReturn(L('common_operation_edit_success')); + } else { + $this->ajaxReturn(L('common_operation_edit_error'), -100); + } + } +} +?> \ No newline at end of file diff --git a/service/Application/Admin/Controller/GoodsController.class.php b/service/Application/Admin/Controller/GoodsController.class.php index 5b7d17221..129519a4d 100755 --- a/service/Application/Admin/Controller/GoodsController.class.php +++ b/service/Application/Admin/Controller/GoodsController.class.php @@ -102,6 +102,9 @@ class GoodsController extends CommonController // 产地 $v['place_origin_text'] = M('Region')->where(['id'=>$v['place_origin']])->getField('name'); + // 品牌 + $v['brand_name'] = empty($v['brand_id']) ? null : M('Brand')->where(['id'=>$v['brand_id']])->getField('name'); + // 商品url地址 $v['goods_url'] = HomeUrl('Goods', 'Index', ['id'=>$v['id']]); @@ -200,6 +203,17 @@ class GoodsController extends CommonController } $this->assign('category_list', $category); + // 品牌分类 + $brand_list = M('BrandCategory')->where(['is_enable'=>1])->select(); + if(!empty($brand_list)) + { + foreach($brand_list as &$v) + { + $v['items'] = M('Brand')->field('id,name')->where(['is_enable'=>1, ['brand_category_id'=>$v['id']]])->order('sort asc')->select(); + } + } + $this->assign('brand_list', $brand_list); + // 基础数据处理 if(!empty($data)) { @@ -313,6 +327,7 @@ class GoodsController extends CommonController 'photo_count' => count($photo['data']), 'is_home_recommended' => intval(I('is_home_recommended')), 'home_recommended_images' => empty($images['data']['file_home_recommended_images']) ? trim($_POST['home_recommended_images']) : $images['data']['file_home_recommended_images'], + 'brand_id' => intval(I('brand_id')), ]; // 添加/编辑 diff --git a/service/Application/Admin/Lang/zh-cn/brand.php b/service/Application/Admin/Lang/zh-cn/brand.php new file mode 100755 index 000000000..8ed01cd00 --- /dev/null +++ b/service/Application/Admin/Lang/zh-cn/brand.php @@ -0,0 +1,27 @@ + '品牌添加', + 'brand_edit_name' => '品牌编辑', + + 'brand_category_id_text' => '品牌分类', + 'brand_category_id_format' => '请选择品牌分类', + + 'brand_name_text' => '名称', + 'brand_name_format' => '名称格式 2~60 个字符', + + 'brand_logo_text' => 'LOGO', + 'brand_logo_format' => '请上传LOGO图片', + + 'brand_website_url_text' => '官网地址', + 'brand_website_url_format' => '官网地址最多 255 个字符' +); +?> \ No newline at end of file diff --git a/service/Application/Admin/Lang/zh-cn/brandcategory.php b/service/Application/Admin/Lang/zh-cn/brandcategory.php new file mode 100755 index 000000000..2b249ac73 --- /dev/null +++ b/service/Application/Admin/Lang/zh-cn/brandcategory.php @@ -0,0 +1,15 @@ + '品牌分类分类添加', + 'brand_category_edit_name' => '品牌分类分类编辑', +); +?> \ No newline at end of file diff --git a/service/Application/Admin/Lang/zh-cn/goods.php b/service/Application/Admin/Lang/zh-cn/goods.php index 475f17e2d..478e66800 100755 --- a/service/Application/Admin/Lang/zh-cn/goods.php +++ b/service/Application/Admin/Lang/zh-cn/goods.php @@ -95,5 +95,7 @@ return array( 'goods_home_recommended_images_text'=> '首页推荐图片', 'goods_home_recommended_images_tips'=> '留空则取相册第一张图', + + 'goods_brand_id_text' => '品牌', ); ?> \ No newline at end of file diff --git a/service/Application/Admin/Model/BrandCategoryModel.class.php b/service/Application/Admin/Model/BrandCategoryModel.class.php new file mode 100755 index 000000000..d927871a9 --- /dev/null +++ b/service/Application/Admin/Model/BrandCategoryModel.class.php @@ -0,0 +1,38 @@ +db(0)->where(array('pid'=>I('id')))->count() == 0); + } +} +?> \ No newline at end of file diff --git a/service/Application/Admin/Model/BrandModel.class.php b/service/Application/Admin/Model/BrandModel.class.php new file mode 100755 index 000000000..99bebc6a3 --- /dev/null +++ b/service/Application/Admin/Model/BrandModel.class.php @@ -0,0 +1,25 @@ + \ No newline at end of file diff --git a/service/Application/Admin/View/Default/Brand/Index.html b/service/Application/Admin/View/Default/Brand/Index.html new file mode 100755 index 000000000..974adabfd --- /dev/null +++ b/service/Application/Admin/View/Default/Brand/Index.html @@ -0,0 +1,114 @@ + + + +
+
+ +
+
+ value="{{$param.keyword}}" /> + + + +
none"> + + +
+ value="{{$param.time_start}}"/> + ~ + value="{{$param.time_end}}"/> +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + class="am-active"> + + + + + + + + + + + + + +
{{:L('brand_name_text')}}{{:L('brand_logo_text')}}{{:L('brand_category_id_text')}}{{:L('brand_website_url_text')}}{{:L('common_view_enable_title')}}{{:L('common_create_time_name')}}{{:L('common_operation_name')}}
{{$v.name}} + + + + + + {{:L('common_on_fill_in_images')}} + + {{$v.brand_category_text}} + {{$v.website_url}} + + + + + + + am-successam-default" data-url="{{:U('Admin/Brand/StateUpdate')}}" data-id="{{$v.id}}" data-state="{{$v['is_enable']}}" data-is-update-status="1"> + {{$v.add_time_text}} + + + + + + +
{{:L('common_not_data_tips')}}
+ + + + + {{$page_html}} + + +
+
+ + + + + \ No newline at end of file diff --git a/service/Application/Admin/View/Default/Brand/SaveInfo.html b/service/Application/Admin/View/Default/Brand/SaveInfo.html new file mode 100755 index 000000000..ee01e33e8 --- /dev/null +++ b/service/Application/Admin/View/Default/Brand/SaveInfo.html @@ -0,0 +1,67 @@ + + + +
+
+ +
+ + + + + {{:L('brand_add_name')}} + + {{:L('brand_edit_name')}} + + + {{:L('common_operation_back')}} + +
+ + value="{{$data.name}}" required /> +
+
+ + +
+ +
+ + value="{{$data.website_url}}" /> +
+ +
+ + + value="{{$data.logo}}"" data-validation-message="{{:L('common_select_images_tips')}}" readonly="readonly" value="{{$data.logo}}" required /> + +
+ {{$image_host}}{{$data.logo}}{{$image_host}}/Public/Admin/Default/Images/default-images.png" id="form-img-logo" class="block m-t-5 am-img-thumbnail am-radius" width="100" data-default="{{$image_host}}{{$data.logo}}{{$image_host}}/Public/Admin/Default/Images/default-images.png" /> +
+
+ + +
+
+ + checked="true" /> +
+
+ value="{{$data.id}}" /> + +
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/service/Application/Admin/View/Default/BrandCategory/Index.html b/service/Application/Admin/View/Default/BrandCategory/Index.html new file mode 100755 index 000000000..7e5f742fa --- /dev/null +++ b/service/Application/Admin/View/Default/BrandCategory/Index.html @@ -0,0 +1,59 @@ + + + +
+
+ +
+ +
+ + + +
+
+
+

{{:L('brand_category_add_name')}}

+ × +
+
+ +
+
+ + +
+
+ + +
+ +
+ + +
+ + +
+
+
+ + + +
+
+ +

{{:L('common_form_loading_tips')}}

+
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/service/Application/Admin/View/Default/Goods/Index.html b/service/Application/Admin/View/Default/Goods/Index.html index c6a3e91e7..9cec81f8f 100755 --- a/service/Application/Admin/View/Default/Goods/Index.html +++ b/service/Application/Admin/View/Default/Goods/Index.html @@ -50,9 +50,10 @@ {{:L('goods_title_text')}} {{:L('goods_price_text')}} {{:L('goods_is_shelves_text')}} - {{:L('goods_is_home_recommended_text')}} + {{:L('goods_is_home_recommended_text')}} {{:L('goods_inventory_text')}} {{:L('goods_model_text')}} + {{:L('goods_brand_id_text')}} {{:L('common_more_name')}} {{:L('common_operation_name')}} @@ -76,11 +77,12 @@ am-successam-default" data-url="{{:U('Admin/Goods/StatusShelves')}}" data-id="{{$v.id}}" data-state="{{$v['is_shelves']}}" data-is-update-status="1"> - + am-successam-default" data-url="{{:U('Admin/Goods/StatusHomeRecommended')}}" data-id="{{$v.id}}" data-state="{{$v['is_home_recommended']}}" data-is-update-status="0"> {{$v.inventory}} {{$v.inventory_unit}} {{$v.model}} + {{$v.brand_name}} {{:L('common_see_more_name')}}
@@ -118,6 +120,9 @@
{{:L('goods_model_text')}}
{{$v.model}}
+
{{:L('goods_brand_id_text')}}
+
{{$v.brand_name}}
+
{{:L('goods_place_origin_text')}}
{{$v.place_origin_text}}
diff --git a/service/Application/Admin/View/Default/Goods/SaveInfo.html b/service/Application/Admin/View/Default/Goods/SaveInfo.html index abde92122..8a36f8de0 100755 --- a/service/Application/Admin/View/Default/Goods/SaveInfo.html +++ b/service/Application/Admin/View/Default/Goods/SaveInfo.html @@ -66,7 +66,7 @@ - + >{{:L('goods_category_level_two')}}-{{$vs.name}} @@ -79,6 +79,24 @@
+
+ +
+ +

diff --git a/service/Application/Home/View/Default/Search/Index.html b/service/Application/Home/View/Default/Search/Index.html index a2fe2923e..211d1dbe9 100644 --- a/service/Application/Home/View/Default/Search/Index.html +++ b/service/Application/Home/View/Default/Search/Index.html @@ -17,6 +17,7 @@
+
相关搜索: 坚果 @@ -25,11 +26,10 @@
    -

    +

    松子 搜索到997件相关商品

    -
  • 已选
    @@ -37,7 +37,6 @@

    清除

  • -
  • 品牌
    @@ -78,7 +77,6 @@
-
diff --git a/service/Application/Runtime/Temp/38432eb7369925b9a826f2b9f64e2262.php b/service/Application/Runtime/Temp/38432eb7369925b9a826f2b9f64e2262.php index ab51b8f89..12945b421 100644 --- a/service/Application/Runtime/Temp/38432eb7369925b9a826f2b9f64e2262.php +++ b/service/Application/Runtime/Temp/38432eb7369925b9a826f2b9f64e2262.php @@ -1,3 +1,3 @@

特别提示

1.意真(上海)金融信息服务有限公司(以下简称“意真金融”)在此特别提醒您(以下简称“用户”,指注册、登录、使用意真金融提供的信息服务的个人)在注册成为用户之前,请认真阅读本《用户服务协议》(以下简称“本协议”),确保您充分理解本协议中各条款。特别是本协议中免除意真金融责任和限制用户权利的条款,请用户仔细阅读,自主考虑风险

2.请用户审慎阅读并选择接受或不接受本协议。除非用户接受本协议所有条款,否则用户无权注册、登录或使用本协议所涉服务。用户的注册、登录、使用等行为将视为对本协议的接受,并同意接受本协议各项条款的约束。

3.意真金融按照本协议规定通过所拥有的“指尖贷”软件(以下简称“指尖贷平台”)为用户提供服务,本协议在意真金融与用户之间具有合同效力。本协议内容可由意真金融随时更新,更新后的协议条款一旦在指尖贷平台公布即代替原来的协议条款,恕不再另行通知,用户可在本网站查阅最新版协议条款。在意真金融修改协议条款后,如果用户不接受修改后的条款,请立即停止使用意真金融提供的服务,用户继续使用意真金融提供的服务将被视为接受修改后的协议。

4.本协议内容包括以下条款及已经发布的或将来可能发布的各类规则。所有规则为协议不可分割的一部分,与协议正文具有同等法律效力。


一、帐号注册

1.用户在使用本服务前需要注册一个“指尖贷”帐号(以下简称“注册帐号”或者“指尖贷帐号”)。用户在注册指尖贷帐号时:

1)须按照指尖贷平台规定的申请注册会员的表格,真实、准确、完整地填写信息或提供资料,且须维持并及时更新资料, 使其保持真实、准确、完整地反应用户当前情况。

2)指尖贷帐号应当使用手机号码绑定注册,请用户使用尚未与指尖贷帐号绑定的手机号码注册指尖贷帐号。

2.鉴于指尖贷帐号的注册方式及业务性质,用户同意意真金融使用用户注册时提供的手机号码及自动提取用户的手机设备识别码、ip地址等信息

3.在用户注册及使用本服务时,意真金融需要收集能识别用户身份的个人信息以便意真金融可以在必要时联系用户,或为用户提供更好的使用体验。意真金融收集的信息包括但不限于用户的身份证信息、银行卡信息、手机详单里面的其他联系人手机号、工作信息、住宅信息、联系人信息、信用报告、工作证明、收入证明、信用卡信息、房产信息、车辆信息、网购信息、学历证明、婚姻情况证明以及学生信息等。意真金融同意对这些信息的使用将受限于本协议有关用户个人隐私信息保护的约束。

二、服务内容

1.意真金融根据用户的需求提供借款的交易信息、交易管理服务及与之相关的一系列用户服务。具体详情以指尖贷平台当时提供的服务内容为准。意真金融可以随时对其提供的服务予以变更,用户将会收到意真金融关于服务变更的通知。

2.用户使用意真金融提供的服务,需要按照指尖贷平台规定的流程提交以本人名义登记的有效银行借记卡等信息,并在通过验证后,将指尖贷账户与前述银行账户进行绑定

3.用户通过指尖贷平台申请使用借款服务时,根据情况需向指尖贷平台进一步提交规定的资料和信息,意真金融有权对用户提交资料及信息的真实性、有效性及合法性,以及用户的信用状况进行核实。用户的申请通过审核之后可通过指尖贷平台使用相关借款服务。

4.用户在注册帐号或使用指尖贷提供的服务的过程中如提交的信息或者资料不真实、不完整或不符合法律法规的规定,则可能无法使用本服务或在使用本服务的过程中受到限制。意真金融有权对用户提供信息的真实性、有效性进行核实,包括向用户公司电话求证、向用户联系人进行求证、根据用户提供的手机登录密码查看用户手机详单、查看用户的信用报告等。如用户提供的信息的真实性、合法性、准确性、有效性存在问题而因此给意真金融或第三方造成损害的,用户应当依法予以赔偿。

三、服务费

1.用户使用意真金融及指尖贷平台提供的服务,意真金融有权收取服务费。服务费的收取范围包括但不限于:

1)账户管理费、软件服务费。用户通过指尖贷平台借款时,意真金融有权在借款转入借款方的账户时先行扣划管理费和软件服务费。若用户借款发生逾期行为,用户将承担一定比例的罚息以补偿催收的费用,罚息计算方式由意真金融提供。

2)提现手续费:用户在指尖贷平台进行提现时收取提现手续费。

3)其他服务费用。

2.具体的收费范围及标准详见用户使用意真金融的服务时,指尖贷平台上所列之收费说明及收费标准。意真金融保留单方面制定及调整平台服务费用收费标准的权利。

四、账户管理及数据存储

1.指尖贷只接受中华人民共和国(不包括香港特区、澳门特区及台湾地区)的18周岁以上的具有完全民事行为能力的自然人成为用户。指尖贷保留中止或终止用户身份的权利。

2.指尖贷帐号的所有权归意真金融所有,用户完成申请注册手续后,获得指尖贷帐号的使用权,该使用权仅属于初始申请注册人,禁止赠与、借用、租用、转让或售卖。

3.用户有权更改或删除“指尖贷”帐户上的个人资料、注册信息等。但用户不得利用指尖贷帐号或指尖贷平台的服务进行如下行为:

1)反对宪法所确定的基本原则,危害国家安全、泄漏国家秘密、颠覆国家政权、破坏国家统一的;

2)侵害他人名誉、隐私权、商业秘密、商标权、著作权、专利权、其他知识产权及其他权益;

3)违反依法律或合约所应负之保密义务;

4)冒用他人名义注册帐号或者利用技术手段批量注册帐号,或使用意真金融提供的服务。

5)从事任何违法、犯罪活动,如贩卖枪支、毒品、盗版软件或其他违禁品等非法交易;洗钱、套现或传销活动等。

6)从事任何可能含有电脑病毒或是可能侵害指尖贷服务系統或者资料的行为。

7)利用服务上传、展示或传播虚假的、骚扰性的、中伤他人的、辱骂性的、恐吓性的、庸俗淫秽的或其他任何非法的信息资料。

8)其他违反法律法规规定、侵犯其他用户合法权益、干扰指尖贷平台正常运营或意真金融有正当理由认为不适当之行为。

4.用户有责任妥善保管注册帐号信息及帐号密码的安全,因用户保管不善可能导致遭受盗号或密码失窃,责任由用户自行承担。若因用户保管不善导致意真金融或者第三方损失,用户需进行赔偿。用户同意在任何情况下不使用其他用户的帐号或密码。在用户怀疑他人使用其帐号或密码时,用户同意立即通知意真金融。

5.意真金融通过用户的注册账号及帐号密码来识别用户的指令,用户使用注册帐号和帐号密码登陆后在指尖贷平台的一切行为均代表用户本人,用户操作所产生的电子信息记录均为其个人行为的有效凭据,并由用户本人承担由此产生的全部责任。并且,意真金融不对用户在本服务中自行对相关数据的删除或储存失败负责。

6.用户同意,若指尖贷平台监控到用户数据异常或有风险,意真金融有权冻结用户“指尖贷”账号,直到风险排除或确认异常数据为客户本人操作,才可进行解冻操作。

五、用户个人隐私信息保护

1.本协议项下的用户信息指用户使用本服务过程中所上传或形成的任何个人信息,包括用户个人隐私信息和非个人隐私信息。个人隐私信息是指涉及用户个人身份或个人隐私的信息,如用户真实姓名、身份证号、手机号码、银行卡信息等。非个人隐私信息是指用户对本服务的操作状态以及使用习惯等明确且客观反映在意真金融服务器端的基本记录信息、个人隐私信息范围外的其它普通信息,以及用户已同意公开的个人隐私信息。

2.尊重用户个人隐私信息的私有性是意真金融的一贯制度,意真金融将采取技术措施和其他必要措施,确保用户个人隐私信息安全,防止在提供服务中取得的用户个人隐私信息泄露、毁损或丢失。在发生前述情形或者意真金融发现存在发生前述情形的可能时,将及时采取补救措施。 3. 用户同意意真金融可在以下事项中使用用户的个人隐私信息:

1)意真金融向用户及时发送重要通知,如软件更新、本协议条款的变更;

2)意真金融内部进行审计、数据分析和研究等,以改进意真金融的产品、服务和与用户之间的沟通;

3)意真金融管理、审查用户信息及进行处理措施;

4)用户借款发生逾期行为后因催收及与之相关的行为而使用;

5)适用的法律法规规定可以使用的其他事项。

4.意真金融承诺,除本条第3款规定的使用用途外,未经用户同意不向任何第三方公开、透露用户个人隐私信息。但以下特定情形除外:

1)根据法律法规规定或有权机关的指示提供用户的个人隐私信息;

2)用户自行向第三方公开其个人隐私信息或由于用户保管注册帐号与密码不慎,由此导致用户个人信息泄漏,或因其他非可归责于意真金融的原因导致的用户个人隐私信息的泄露;

3)向提供独立服务且仅要求服务相关的必要信息的供应商提供,如印刷厂、邮递公司等;

4)向合作的第三方公开借款逾期的用户个人隐私信息以方便第三方催收欠款金额;

5)向意真金融的关联方提供;

6)任何由于黑客攻击、电脑病毒侵入及其他不可抗力事件导致用户个人隐私信息的泄露。

5.用户同意,如在使用借款服务时发生逾期行为,意真金融或其合作的第三方有权在催收过程中拨打手机详单中其他联系人电话。

6.用户同意意真金融自行收集、使用或向第三方提供用户的非个人隐私信息,以改善意真金融的技术和服务,向用户提供更好的服务体验。

7.用户同意上海资信有限公司和人民银行征信中心将本人在意真金融公司的信用信息纳入由上海资信征信有限公司建设的网络金融征信系统(NFCS)和人民银行征信中心运营的金融信用信息基础数据库,用于相关法律、法规、规章和规范性文件规定的用途。同时,用户同意意真金融向上海资信征信有限公司查询用户在NFCS网络金融征信系统中的个人信用信息,及通过上海资信征信有限公司向征信中心查询用户的个人信用信息。

六、风险提示及责任限制

1.用户理解并确认,用户在使用指尖贷平台服务时可能会因遇到以下风险导致服务中断、变更甚至终止,对此造成的用户或者第三方的损失意真金融不承担责任:

1)政策风险:有关法律、法规及相关政策、规则发生变化;

2)不可抗力因素导致的风险:不可抗力是指不能预见、不能克服并不能避免且对一方或双方造成重大影响的客观事件,包括但不限于自然灾害如洪水、地震、瘟疫流行和风暴等以及社会事件如战争、动乱、政府行为等。

3)计算机病毒或黑客攻击、系统不稳定及其他任何技术、互联网络、通信线路原因等造成的服务中断或不能满足用户要求的风险。

2.用户理解并确认,意真金融需要定期或不定期地对“指尖贷”平台或相关的设备进行检修或者维护,如因此类情况而造成服务在合理时间内的中断,意真金融无需为此承担任何责任,但意真金融应事先进行通告。

3.如发生下列任何一种情形,意真金融有权变更、中断或终止向用户提供的服务,而无需对用户或任何第三方承担任何责任:

1)用户提供信息或资料不真实、不完整,或与注册时信息不一致又未能提供合理证明;

2)用户违反相关法律法规或本协议的约定;

3)按照法律规定或有权机关的要求;

4)出于安全的原因或其他必要的情形。

4.除明确表示提供担保的业务外,意真金融不对任何用户及/或任何交易提供任何担保或条件,无论是明示、默示或法定的。意真金融不能也不试图对用户发布的信息进行控制,也不对该等信息承担任何形式的证明、鉴定服务。意真金融及其股东、创建人、高级职员、董事、代理人、关联公司、母公司、子公司和雇员等均不能完全保证平台内容的真实性、充分性、可靠性、准确性、完整性和有效性,并且无需承担任何由此引起的法律责任。

5.以上并不能揭示个人会员通过指尖贷平台进行交易的全部风险及市场的全部情形。用户应依赖于个人的独立判断进行交易。在做出交易决策前,用户应全面了解相关交易,根据自身的交易目标、风险承受能力和资产状况等谨慎决策,并自行承担全部风险和法律责任。意真金融依据法律法规或本协议约定获得处理部分用户违法违规或违约内容的权利,不构成意真金融的义务或承诺,意真金融不能保证及时发现用户的违法违规或违约行为或进行相应处理。

6.用户理解并同意,鉴于互联网服务的特殊性或者因业务发展需要,意真金融保留单方面对服务的全部或部分服务内容变更、暂停、终止或撤销的权利,用户需承担此风险。

7.在任何情况下,意真金融均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害,包括因用户使用指尖贷或本服务而遭受的利润损失,承担责任(即使意真金融已被告知该等损失的可能性亦然)。

七、知识产权声明

1.指尖贷平台上所有内容,包括但不限于文字、图片、资料、平台架构、平台画面的安排、网页设计以及其他意真金融标识及产品或服务的名称等,均归意真金融或其他权利人依法拥有相关商标权、专利权、著作权、商业秘密等知识产权。非经意真金融或其他权利人书面同意,任何人不得擅自使用。

2.未经意真金融事先书面同意,用户不得将意真金融标识以任何方式展示或使用或作其他处理,也不得向他人表明用户有权展示、使用、或其他有权处理意真金融标识的行为。

3.除另有特别声明外,意真金融向用户提供服务时所依托软件的著作权、专利权及其他知识产权均归意真金融所有。

八、平台权利

1.如果意真金融发现或收到他人举报或投诉用户违反本协议约定的,意真金融有权不经客户同意随时对客户账户处以帐号封禁等处罚,且通知用户处理结果。

2.用户理解并同意,意真金融有权依合理判断对违反有关法律法规或本协议规定的行为进行处罚,对违法违规的任何用户采取适当的法律行动,并依据法律法规保存有关信息向有关部门报告等,用户应承担由此而产生的一切法律责任。

九、其他

1.本协议的效力、解释及纠纷的解决,适用于中华人民共和国法律。若用户和意真金融之间发生任何纠纷或争议,首先应友好协商解决,协商不成的,用户同意将纠纷或争议提交意真金融住所地有管辖权的人民法院管辖。

2.本协议的任何条款无论因何种原因无效或不具可执行性,其余条款仍有效,对双方具有约束力。

";s:24:"common_agreement_shanghu";s:4604:"

特别声明:本公司依据快件的重量(而非价值)收取基本运费,赔偿标准是按照是否保价原则为基础。依公平原则,本公司对单票快件的保价价值限定为3万元人民币。否则,寄件人需拆分至单票3万元以下分别寄件,并进行保价;如因所寄递的快件性质无法拆分,请寄件人采取其他运输方式以保障安全。

1、快递详单是本协议的组成部分。本协议自寄件人将快件交付给快递服务组织揽件人员并签字或盖章后成立。

2、本协议项下快递服务组织是指取得“圆通”商标使用权,并具备圆通网络经营权的快递营业机构。

3、快递服务组织依法收寄快件,对信件以外的快件按照国家有关规定应当场验视,对禁寄物品和拒绝验视的物品不予收寄。向寄件人提供自寄件之日起,一年的查询服务。

4、寄件人要准确填写寄件信息,不得交寄有爆炸性、易燃性、腐蚀性、放射性、毒性的危险品、麻醉药品、生化制品、现金以及国家法律、法规禁止寄递的物品。不得隐瞒交寄快件的内件状况,配合快递服务组织验视快件。需要的情况下寄件人应当依照国家规定出示相关部门的安全证明和有效证件。如快件内物品属于禁寄物品,快递服务组织有权根据相关法律法规规定处理。寄件人匿报、隐蔽交寄禁寄和航空限寄物品导致快件服务组织或第三人人身或财产伤害的,寄件人应当向快件服务组织或第三人承担赔偿责任。

5、快件服务组织在服务过程中造成快件短少、毁损、灭失的,应当承担赔偿责任。寄件人违规交寄或填单有误,造成快件延误、无法送达、无法退还,或因封装不善造成快件延误、毁损、灭失的,由寄件人承担责任。快件服务组织有偿代为封装的,承担因封装不善造成的延误、毁损、灭失的责任。

6、如地址不正确、联系方式错误、收件人拒收等原因而造成无法派送的快件,若寄件人要求退回的,双程费用均由寄件人承担。

7、为保证快件安全送达,寄件人办理寄件时须如实申报快件内容和价值,并准确、清楚的填写寄件人、收件人的名称、地址和联系电话等资料。

8、寄件人可以与快递服务组织约定送达时间,没有约定的按照《快递服务》国家标准GB/T27917的规定。快递服务组织将快件送达收件人地址,经收件人或收件人(寄件人)允许的代收人签字,视为送达。若无收件人姓名,仅有收货单位地址,,则由单位收件人员签字,或盖单位收发章,视为送达。

9、赔偿标准:是否保价由寄件人自愿选择,贵重物品建议选择保价,保价费最低为1元。

(1)、未保价的快件,丢失、毁坏、损少,物品最高赔偿不超过300元/票,文最高不超过100元/票,另有约定的按照约定办理;

(2)、文件按100元/票赔偿,如核销单、提单等重要文件按(3)、(4)规定保价和付费赔偿;

(3)、单票价值在2000元(含)以内的,保价费为保价金额的0.1%,如快件丢失、损毁、减少的,按保价赔偿,最高不超过2000元;

(4)、寄件人确认交寄的快件单价不超过叁万元人民币。价值在2000元以上的,保价费为保价金额的1%,如快件丢失、损坏、短少的,按照实际价值赔偿,最高不超过快件的保价金额;

10、本协议所称快件的“价值”,是指快件本身物理性质所具备的的价;所谓“损失”,不包括其可能获得的收益、利润、实际用途、商业机会、商业价值等任何直接或间接损失。

11、免责事由从法律、法规规定。未尽事宜可由协议双方另行商定,在本详情单正面“备注”栏内注明。

";s:28:"common_share_giving_integral";s:2:"10";s:20:"common_default_theme";s:7:"Default";s:19:"common_baidu_map_ak";s:24:"XSdiGjfg3wOHiKjpYEMG6CYA";s:19:"home_email_user_reg";s:58:"

用户注册,你的验证码是  #code#

";s:26:"home_email_user_forget_pwd";s:58:"

密码找回,你的验证码是  #code#

";s:29:"home_email_user_email_binding";s:87:"

邮箱绑定,你的验证码是  #code#

";s:25:"home_static_cache_version";s:8:"20180817";} +//000000000000a:53:{s:17:"admin_page_number";s:2:"12";s:32:"common_deduction_inventory_rules";s:1:"0";s:29:"common_is_deduction_inventory";s:1:"1";s:25:"common_user_center_notice";s:48:"用户中心公告文字,后台配置修改。";s:20:"common_service_price";s:4:"0.01";s:19:"admin_excel_charset";s:1:"0";s:19:"home_seo_site_title";s:54:"ShopXO企业级B2C电商系统提供商 - 演示站点";s:22:"home_seo_site_keywords";s:113:"商城系统,开源电商系统,免费电商系统,PHP电商系统,商城系统,B2C电商系统,B2B2C电商系统";s:25:"home_seo_site_description";s:108:"ShopXO是国内领先的商城系统提供商,为企业提供php商城系统、微信商城、小程序。";s:13:"home_site_icp";s:20:"黔ICP备15003530号";s:20:"home_statistics_code";s:0:"";s:15:"home_site_state";s:1:"1";s:22:"home_site_close_reason";s:12:"升级中...";s:15:"common_timezone";s:13:"Asia/Shanghai";s:16:"home_footer_info";s:0:"";s:14:"home_site_name";s:6:"ShopXO";s:18:"home_seo_url_model";s:1:"3";s:20:"home_max_limit_image";s:7:"2048000";s:19:"home_max_limit_file";s:8:"51200000";s:20:"home_max_limit_video";s:9:"102400000";s:24:"home_seo_url_html_suffix";s:4:"html";s:22:"common_share_view_desc";s:0:"";s:35:"common_shanghu_referrer_user_number";s:1:"2";s:14:"home_site_logo";s:52:"/Public/Upload/common/images/20180807174046_logo.png";s:22:"home_content_max_width";s:4:"1200";s:23:"common_image_proportion";s:5:"56.22";s:19:"home_user_reg_state";a:1:{i:0;s:0:"";}s:21:"home_user_login_state";s:1:"1";s:21:"home_img_verify_state";s:1:"1";s:27:"common_verify_time_interval";s:2:"60";s:17:"home_sms_user_reg";s:13:"SMS_141025013";s:15:"common_sms_sign";s:12:"伯缘家政";s:17:"common_sms_apikey";s:16:"LTAI5xuUkI63GlEd";s:24:"home_sms_user_forget_pwd";s:0:"";s:25:"common_verify_expire_time";s:3:"600";s:22:"common_email_smtp_host";s:12:"smtp.163.com";s:22:"common_email_smtp_port";s:2:"25";s:25:"common_email_smtp_account";s:18:"weiletao88@163.com";s:22:"common_email_smtp_name";s:18:"weiletao88@163.com";s:21:"common_email_smtp_pwd";s:9:"weiletao?";s:27:"common_email_smtp_send_name";s:6:"ShopXO";s:38:"common_share_giving_integral_frequency";s:1:"3";s:20:"common_sms_apisecret";s:30:"h6HZVNstYkPCX5TqkJJKNMTeA0kc7w";s:27:"common_customer_service_tel";s:12:"021-51085944";s:21:"common_agreement_kehu";s:25394:"

特别提示

1.意真(上海)金融信息服务有限公司(以下简称“意真金融”)在此特别提醒您(以下简称“用户”,指注册、登录、使用意真金融提供的信息服务的个人)在注册成为用户之前,请认真阅读本《用户服务协议》(以下简称“本协议”),确保您充分理解本协议中各条款。特别是本协议中免除意真金融责任和限制用户权利的条款,请用户仔细阅读,自主考虑风险

2.请用户审慎阅读并选择接受或不接受本协议。除非用户接受本协议所有条款,否则用户无权注册、登录或使用本协议所涉服务。用户的注册、登录、使用等行为将视为对本协议的接受,并同意接受本协议各项条款的约束。

3.意真金融按照本协议规定通过所拥有的“指尖贷”软件(以下简称“指尖贷平台”)为用户提供服务,本协议在意真金融与用户之间具有合同效力。本协议内容可由意真金融随时更新,更新后的协议条款一旦在指尖贷平台公布即代替原来的协议条款,恕不再另行通知,用户可在本网站查阅最新版协议条款。在意真金融修改协议条款后,如果用户不接受修改后的条款,请立即停止使用意真金融提供的服务,用户继续使用意真金融提供的服务将被视为接受修改后的协议。

4.本协议内容包括以下条款及已经发布的或将来可能发布的各类规则。所有规则为协议不可分割的一部分,与协议正文具有同等法律效力。


一、帐号注册

1.用户在使用本服务前需要注册一个“指尖贷”帐号(以下简称“注册帐号”或者“指尖贷帐号”)。用户在注册指尖贷帐号时:

1)须按照指尖贷平台规定的申请注册会员的表格,真实、准确、完整地填写信息或提供资料,且须维持并及时更新资料, 使其保持真实、准确、完整地反应用户当前情况。

2)指尖贷帐号应当使用手机号码绑定注册,请用户使用尚未与指尖贷帐号绑定的手机号码注册指尖贷帐号。

2.鉴于指尖贷帐号的注册方式及业务性质,用户同意意真金融使用用户注册时提供的手机号码及自动提取用户的手机设备识别码、ip地址等信息

3.在用户注册及使用本服务时,意真金融需要收集能识别用户身份的个人信息以便意真金融可以在必要时联系用户,或为用户提供更好的使用体验。意真金融收集的信息包括但不限于用户的身份证信息、银行卡信息、手机详单里面的其他联系人手机号、工作信息、住宅信息、联系人信息、信用报告、工作证明、收入证明、信用卡信息、房产信息、车辆信息、网购信息、学历证明、婚姻情况证明以及学生信息等。意真金融同意对这些信息的使用将受限于本协议有关用户个人隐私信息保护的约束。

二、服务内容

1.意真金融根据用户的需求提供借款的交易信息、交易管理服务及与之相关的一系列用户服务。具体详情以指尖贷平台当时提供的服务内容为准。意真金融可以随时对其提供的服务予以变更,用户将会收到意真金融关于服务变更的通知。

2.用户使用意真金融提供的服务,需要按照指尖贷平台规定的流程提交以本人名义登记的有效银行借记卡等信息,并在通过验证后,将指尖贷账户与前述银行账户进行绑定

3.用户通过指尖贷平台申请使用借款服务时,根据情况需向指尖贷平台进一步提交规定的资料和信息,意真金融有权对用户提交资料及信息的真实性、有效性及合法性,以及用户的信用状况进行核实。用户的申请通过审核之后可通过指尖贷平台使用相关借款服务。

4.用户在注册帐号或使用指尖贷提供的服务的过程中如提交的信息或者资料不真实、不完整或不符合法律法规的规定,则可能无法使用本服务或在使用本服务的过程中受到限制。意真金融有权对用户提供信息的真实性、有效性进行核实,包括向用户公司电话求证、向用户联系人进行求证、根据用户提供的手机登录密码查看用户手机详单、查看用户的信用报告等。如用户提供的信息的真实性、合法性、准确性、有效性存在问题而因此给意真金融或第三方造成损害的,用户应当依法予以赔偿。

三、服务费

1.用户使用意真金融及指尖贷平台提供的服务,意真金融有权收取服务费。服务费的收取范围包括但不限于:

1)账户管理费、软件服务费。用户通过指尖贷平台借款时,意真金融有权在借款转入借款方的账户时先行扣划管理费和软件服务费。若用户借款发生逾期行为,用户将承担一定比例的罚息以补偿催收的费用,罚息计算方式由意真金融提供。

2)提现手续费:用户在指尖贷平台进行提现时收取提现手续费。

3)其他服务费用。

2.具体的收费范围及标准详见用户使用意真金融的服务时,指尖贷平台上所列之收费说明及收费标准。意真金融保留单方面制定及调整平台服务费用收费标准的权利。

四、账户管理及数据存储

1.指尖贷只接受中华人民共和国(不包括香港特区、澳门特区及台湾地区)的18周岁以上的具有完全民事行为能力的自然人成为用户。指尖贷保留中止或终止用户身份的权利。

2.指尖贷帐号的所有权归意真金融所有,用户完成申请注册手续后,获得指尖贷帐号的使用权,该使用权仅属于初始申请注册人,禁止赠与、借用、租用、转让或售卖。

3.用户有权更改或删除“指尖贷”帐户上的个人资料、注册信息等。但用户不得利用指尖贷帐号或指尖贷平台的服务进行如下行为:

1)反对宪法所确定的基本原则,危害国家安全、泄漏国家秘密、颠覆国家政权、破坏国家统一的;

2)侵害他人名誉、隐私权、商业秘密、商标权、著作权、专利权、其他知识产权及其他权益;

3)违反依法律或合约所应负之保密义务;

4)冒用他人名义注册帐号或者利用技术手段批量注册帐号,或使用意真金融提供的服务。

5)从事任何违法、犯罪活动,如贩卖枪支、毒品、盗版软件或其他违禁品等非法交易;洗钱、套现或传销活动等。

6)从事任何可能含有电脑病毒或是可能侵害指尖贷服务系統或者资料的行为。

7)利用服务上传、展示或传播虚假的、骚扰性的、中伤他人的、辱骂性的、恐吓性的、庸俗淫秽的或其他任何非法的信息资料。

8)其他违反法律法规规定、侵犯其他用户合法权益、干扰指尖贷平台正常运营或意真金融有正当理由认为不适当之行为。

4.用户有责任妥善保管注册帐号信息及帐号密码的安全,因用户保管不善可能导致遭受盗号或密码失窃,责任由用户自行承担。若因用户保管不善导致意真金融或者第三方损失,用户需进行赔偿。用户同意在任何情况下不使用其他用户的帐号或密码。在用户怀疑他人使用其帐号或密码时,用户同意立即通知意真金融。

5.意真金融通过用户的注册账号及帐号密码来识别用户的指令,用户使用注册帐号和帐号密码登陆后在指尖贷平台的一切行为均代表用户本人,用户操作所产生的电子信息记录均为其个人行为的有效凭据,并由用户本人承担由此产生的全部责任。并且,意真金融不对用户在本服务中自行对相关数据的删除或储存失败负责。

6.用户同意,若指尖贷平台监控到用户数据异常或有风险,意真金融有权冻结用户“指尖贷”账号,直到风险排除或确认异常数据为客户本人操作,才可进行解冻操作。

五、用户个人隐私信息保护

1.本协议项下的用户信息指用户使用本服务过程中所上传或形成的任何个人信息,包括用户个人隐私信息和非个人隐私信息。个人隐私信息是指涉及用户个人身份或个人隐私的信息,如用户真实姓名、身份证号、手机号码、银行卡信息等。非个人隐私信息是指用户对本服务的操作状态以及使用习惯等明确且客观反映在意真金融服务器端的基本记录信息、个人隐私信息范围外的其它普通信息,以及用户已同意公开的个人隐私信息。

2.尊重用户个人隐私信息的私有性是意真金融的一贯制度,意真金融将采取技术措施和其他必要措施,确保用户个人隐私信息安全,防止在提供服务中取得的用户个人隐私信息泄露、毁损或丢失。在发生前述情形或者意真金融发现存在发生前述情形的可能时,将及时采取补救措施。 3. 用户同意意真金融可在以下事项中使用用户的个人隐私信息:

1)意真金融向用户及时发送重要通知,如软件更新、本协议条款的变更;

2)意真金融内部进行审计、数据分析和研究等,以改进意真金融的产品、服务和与用户之间的沟通;

3)意真金融管理、审查用户信息及进行处理措施;

4)用户借款发生逾期行为后因催收及与之相关的行为而使用;

5)适用的法律法规规定可以使用的其他事项。

4.意真金融承诺,除本条第3款规定的使用用途外,未经用户同意不向任何第三方公开、透露用户个人隐私信息。但以下特定情形除外:

1)根据法律法规规定或有权机关的指示提供用户的个人隐私信息;

2)用户自行向第三方公开其个人隐私信息或由于用户保管注册帐号与密码不慎,由此导致用户个人信息泄漏,或因其他非可归责于意真金融的原因导致的用户个人隐私信息的泄露;

3)向提供独立服务且仅要求服务相关的必要信息的供应商提供,如印刷厂、邮递公司等;

4)向合作的第三方公开借款逾期的用户个人隐私信息以方便第三方催收欠款金额;

5)向意真金融的关联方提供;

6)任何由于黑客攻击、电脑病毒侵入及其他不可抗力事件导致用户个人隐私信息的泄露。

5.用户同意,如在使用借款服务时发生逾期行为,意真金融或其合作的第三方有权在催收过程中拨打手机详单中其他联系人电话。

6.用户同意意真金融自行收集、使用或向第三方提供用户的非个人隐私信息,以改善意真金融的技术和服务,向用户提供更好的服务体验。

7.用户同意上海资信有限公司和人民银行征信中心将本人在意真金融公司的信用信息纳入由上海资信征信有限公司建设的网络金融征信系统(NFCS)和人民银行征信中心运营的金融信用信息基础数据库,用于相关法律、法规、规章和规范性文件规定的用途。同时,用户同意意真金融向上海资信征信有限公司查询用户在NFCS网络金融征信系统中的个人信用信息,及通过上海资信征信有限公司向征信中心查询用户的个人信用信息。

六、风险提示及责任限制

1.用户理解并确认,用户在使用指尖贷平台服务时可能会因遇到以下风险导致服务中断、变更甚至终止,对此造成的用户或者第三方的损失意真金融不承担责任:

1)政策风险:有关法律、法规及相关政策、规则发生变化;

2)不可抗力因素导致的风险:不可抗力是指不能预见、不能克服并不能避免且对一方或双方造成重大影响的客观事件,包括但不限于自然灾害如洪水、地震、瘟疫流行和风暴等以及社会事件如战争、动乱、政府行为等。

3)计算机病毒或黑客攻击、系统不稳定及其他任何技术、互联网络、通信线路原因等造成的服务中断或不能满足用户要求的风险。

2.用户理解并确认,意真金融需要定期或不定期地对“指尖贷”平台或相关的设备进行检修或者维护,如因此类情况而造成服务在合理时间内的中断,意真金融无需为此承担任何责任,但意真金融应事先进行通告。

3.如发生下列任何一种情形,意真金融有权变更、中断或终止向用户提供的服务,而无需对用户或任何第三方承担任何责任:

1)用户提供信息或资料不真实、不完整,或与注册时信息不一致又未能提供合理证明;

2)用户违反相关法律法规或本协议的约定;

3)按照法律规定或有权机关的要求;

4)出于安全的原因或其他必要的情形。

4.除明确表示提供担保的业务外,意真金融不对任何用户及/或任何交易提供任何担保或条件,无论是明示、默示或法定的。意真金融不能也不试图对用户发布的信息进行控制,也不对该等信息承担任何形式的证明、鉴定服务。意真金融及其股东、创建人、高级职员、董事、代理人、关联公司、母公司、子公司和雇员等均不能完全保证平台内容的真实性、充分性、可靠性、准确性、完整性和有效性,并且无需承担任何由此引起的法律责任。

5.以上并不能揭示个人会员通过指尖贷平台进行交易的全部风险及市场的全部情形。用户应依赖于个人的独立判断进行交易。在做出交易决策前,用户应全面了解相关交易,根据自身的交易目标、风险承受能力和资产状况等谨慎决策,并自行承担全部风险和法律责任。意真金融依据法律法规或本协议约定获得处理部分用户违法违规或违约内容的权利,不构成意真金融的义务或承诺,意真金融不能保证及时发现用户的违法违规或违约行为或进行相应处理。

6.用户理解并同意,鉴于互联网服务的特殊性或者因业务发展需要,意真金融保留单方面对服务的全部或部分服务内容变更、暂停、终止或撤销的权利,用户需承担此风险。

7.在任何情况下,意真金融均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害,包括因用户使用指尖贷或本服务而遭受的利润损失,承担责任(即使意真金融已被告知该等损失的可能性亦然)。

七、知识产权声明

1.指尖贷平台上所有内容,包括但不限于文字、图片、资料、平台架构、平台画面的安排、网页设计以及其他意真金融标识及产品或服务的名称等,均归意真金融或其他权利人依法拥有相关商标权、专利权、著作权、商业秘密等知识产权。非经意真金融或其他权利人书面同意,任何人不得擅自使用。

2.未经意真金融事先书面同意,用户不得将意真金融标识以任何方式展示或使用或作其他处理,也不得向他人表明用户有权展示、使用、或其他有权处理意真金融标识的行为。

3.除另有特别声明外,意真金融向用户提供服务时所依托软件的著作权、专利权及其他知识产权均归意真金融所有。

八、平台权利

1.如果意真金融发现或收到他人举报或投诉用户违反本协议约定的,意真金融有权不经客户同意随时对客户账户处以帐号封禁等处罚,且通知用户处理结果。

2.用户理解并同意,意真金融有权依合理判断对违反有关法律法规或本协议规定的行为进行处罚,对违法违规的任何用户采取适当的法律行动,并依据法律法规保存有关信息向有关部门报告等,用户应承担由此而产生的一切法律责任。

九、其他

1.本协议的效力、解释及纠纷的解决,适用于中华人民共和国法律。若用户和意真金融之间发生任何纠纷或争议,首先应友好协商解决,协商不成的,用户同意将纠纷或争议提交意真金融住所地有管辖权的人民法院管辖。

2.本协议的任何条款无论因何种原因无效或不具可执行性,其余条款仍有效,对双方具有约束力。

";s:24:"common_agreement_shanghu";s:4604:"

特别声明:本公司依据快件的重量(而非价值)收取基本运费,赔偿标准是按照是否保价原则为基础。依公平原则,本公司对单票快件的保价价值限定为3万元人民币。否则,寄件人需拆分至单票3万元以下分别寄件,并进行保价;如因所寄递的快件性质无法拆分,请寄件人采取其他运输方式以保障安全。

1、快递详单是本协议的组成部分。本协议自寄件人将快件交付给快递服务组织揽件人员并签字或盖章后成立。

2、本协议项下快递服务组织是指取得“圆通”商标使用权,并具备圆通网络经营权的快递营业机构。

3、快递服务组织依法收寄快件,对信件以外的快件按照国家有关规定应当场验视,对禁寄物品和拒绝验视的物品不予收寄。向寄件人提供自寄件之日起,一年的查询服务。

4、寄件人要准确填写寄件信息,不得交寄有爆炸性、易燃性、腐蚀性、放射性、毒性的危险品、麻醉药品、生化制品、现金以及国家法律、法规禁止寄递的物品。不得隐瞒交寄快件的内件状况,配合快递服务组织验视快件。需要的情况下寄件人应当依照国家规定出示相关部门的安全证明和有效证件。如快件内物品属于禁寄物品,快递服务组织有权根据相关法律法规规定处理。寄件人匿报、隐蔽交寄禁寄和航空限寄物品导致快件服务组织或第三人人身或财产伤害的,寄件人应当向快件服务组织或第三人承担赔偿责任。

5、快件服务组织在服务过程中造成快件短少、毁损、灭失的,应当承担赔偿责任。寄件人违规交寄或填单有误,造成快件延误、无法送达、无法退还,或因封装不善造成快件延误、毁损、灭失的,由寄件人承担责任。快件服务组织有偿代为封装的,承担因封装不善造成的延误、毁损、灭失的责任。

6、如地址不正确、联系方式错误、收件人拒收等原因而造成无法派送的快件,若寄件人要求退回的,双程费用均由寄件人承担。

7、为保证快件安全送达,寄件人办理寄件时须如实申报快件内容和价值,并准确、清楚的填写寄件人、收件人的名称、地址和联系电话等资料。

8、寄件人可以与快递服务组织约定送达时间,没有约定的按照《快递服务》国家标准GB/T27917的规定。快递服务组织将快件送达收件人地址,经收件人或收件人(寄件人)允许的代收人签字,视为送达。若无收件人姓名,仅有收货单位地址,,则由单位收件人员签字,或盖单位收发章,视为送达。

9、赔偿标准:是否保价由寄件人自愿选择,贵重物品建议选择保价,保价费最低为1元。

(1)、未保价的快件,丢失、毁坏、损少,物品最高赔偿不超过300元/票,文最高不超过100元/票,另有约定的按照约定办理;

(2)、文件按100元/票赔偿,如核销单、提单等重要文件按(3)、(4)规定保价和付费赔偿;

(3)、单票价值在2000元(含)以内的,保价费为保价金额的0.1%,如快件丢失、损毁、减少的,按保价赔偿,最高不超过2000元;

(4)、寄件人确认交寄的快件单价不超过叁万元人民币。价值在2000元以上的,保价费为保价金额的1%,如快件丢失、损坏、短少的,按照实际价值赔偿,最高不超过快件的保价金额;

10、本协议所称快件的“价值”,是指快件本身物理性质所具备的的价;所谓“损失”,不包括其可能获得的收益、利润、实际用途、商业机会、商业价值等任何直接或间接损失。

11、免责事由从法律、法规规定。未尽事宜可由协议双方另行商定,在本详情单正面“备注”栏内注明。

";s:28:"common_share_giving_integral";s:2:"10";s:20:"common_default_theme";s:7:"Default";s:19:"common_baidu_map_ak";s:24:"XSdiGjfg3wOHiKjpYEMG6CYA";s:19:"home_email_user_reg";s:58:"

用户注册,你的验证码是  #code#

";s:26:"home_email_user_forget_pwd";s:58:"

密码找回,你的验证码是  #code#

";s:29:"home_email_user_email_binding";s:87:"

邮箱绑定,你的验证码是  #code#

";s:25:"home_static_cache_version";s:8:"20180817";} ?> \ No newline at end of file diff --git a/service/Application/Runtime/Temp/8cde93cbd070139d84f31d26f8ea8f4d.php b/service/Application/Runtime/Temp/8cde93cbd070139d84f31d26f8ea8f4d.php index 2a8391b21..4fe7202cb 100644 --- a/service/Application/Runtime/Temp/8cde93cbd070139d84f31d26f8ea8f4d.php +++ b/service/Application/Runtime/Temp/8cde93cbd070139d84f31d26f8ea8f4d.php @@ -1,3 +1,3 @@ \ No newline at end of file diff --git a/service/Application/Runtime/Temp/a58f8070835be94249ea77f3601c6647.php b/service/Application/Runtime/Temp/a58f8070835be94249ea77f3601c6647.php index eea8a78ec..a5dacfa5b 100644 --- a/service/Application/Runtime/Temp/a58f8070835be94249ea77f3601c6647.php +++ b/service/Application/Runtime/Temp/a58f8070835be94249ea77f3601c6647.php @@ -1,3 +1,3 @@ \ No newline at end of file diff --git a/service/Public/Admin/Default/Css/Brand.css b/service/Public/Admin/Default/Css/Brand.css new file mode 100755 index 000000000..150222433 --- /dev/null +++ b/service/Public/Admin/Default/Css/Brand.css @@ -0,0 +1,18 @@ +/** + * 列表 + */ +.form-keyword { width: 55% !important; display: initial !important; } +.more-submit input { display: none; } +.param-where, .param-date input { display: initial !important; } +@media only screen and (max-width: 641px) { + .param-where { width: 100% !important; margin-left: 0px !important; } + .param-date input { width: 47% !important; } +} +@media only screen and (min-width: 641px) { + .param-where { width: 32% !important; float: left; } + .param-date input { width: 45% !important; } + .param-where:nth-child(1), .param-where:nth-child(4) { margin-left: 0px !important; } +} +@media only screen and (max-width: 321px) { + .view-operation button { margin: 2px 0px; } +} \ No newline at end of file diff --git a/service/Public/Common/Css/Common.css b/service/Public/Common/Css/Common.css index 0a251ec18..a991666de 100755 --- a/service/Public/Common/Css/Common.css +++ b/service/Public/Common/Css/Common.css @@ -13,8 +13,8 @@ .am-form-group:hover>label { color: #333 !important; } .am-form-group:hover>label>span { color: #FF9800 !important; } .am-form-group:hover>input, .am-form-group:hover>select, .am-form-group:hover>textarea, .am-form-group:hover .chosen-choices, .am-form-group:hover .chosen-single { border: 1px solid #999 ; } -.am-form-error .chosen-choices { border: 1px solid #dd514c !important; } -.am-form-success .chosen-choices { border: 1px solid #5eb95e !important; } +.am-form-error .chosen-choices, .am-form-error .chosen-default { border: 1px solid #dd514c !important; } +.am-form-success .chosen-choices, .am-form-success .chosen-single { border: 1px solid #5eb95e !important; } /** * 插件 diff --git a/service/Public/Common/Js/Common.js b/service/Public/Common/Js/Common.js index 4e7092faf..e9adf96c9 100755 --- a/service/Public/Common/Js/Common.js +++ b/service/Public/Common/Js/Common.js @@ -568,9 +568,9 @@ $(function() }); } // 多选插件 空内容失去焦点验证bug兼容处理 - $(document).on('blur', 'ul.chosen-choices .search-field', function() + $(document).on('blur', 'ul.chosen-choices .search-field, div.chosen-select .chosen-search', function() { - if($('ul.chosen-choices li').length <= 1) + if($(this).parent().find('li').length <= 1 || $(this).parent().parent().find('.chosen-default').length >= 1) { $(this).parent().parent().prev().trigger('blur'); } diff --git a/service/Public/Home/Default/Css/Common.css b/service/Public/Home/Default/Css/Common.css index 1cb907db2..4448327c2 100755 --- a/service/Public/Home/Default/Css/Common.css +++ b/service/Public/Home/Default/Css/Common.css @@ -91,7 +91,7 @@ color: #555555;background:none;border-color:transparent;cursor: default;} .goods-category-s{display: none;} /*浮动框*/ -.nav-search{top:0;left:0;width:100%;z-index:1099; margin:0px auto;background:#fff; padding-top: 5px;} +.nav-search{top:0;left:0;width:100%;z-index:1099; margin:0px auto;background:#fff; padding-top: 5px; position: relative;} .nav-search .logo{height:36px;width:95px; margin: 0 auto; display: -webkit-inline-box;} .logoBig{display:none;} .logo img{width:100%} diff --git a/service/Public/Home/Default/Css/Search.css b/service/Public/Home/Default/Css/Search.css index f96db0676..737a9309b 100644 --- a/service/Public/Home/Default/Css/Search.css +++ b/service/Public/Home/Default/Css/Search.css @@ -17,16 +17,17 @@ p {margin: 0 0 .3rem 0; font-size:14px; } img{ width:100%;} .price{color: #e4393c;font-weight: 600;} -.theme-popover {z-index: 1009;overflow:visible;background:#fff;} +.theme-popover {z-index: 1009;overflow:visible;background:#fff; width: 100%; } .sort-nav a:hover, .sort-nav a:focus { color: #d2364c; } +.select .title-tips { font-size: 12px; color: #888; } /* select */ .sort-nav{padding:0px;font-size:12px} .suggest,.searchAbout{ display:none;} -.select li {margin: 10px 0 5px 0px;} -.select dl{zoom:1;position:relative;line-height:24px; margin:10px 0px; } +.select li { margin: 5px 0px; } +.select dl{zoom:1;position:relative;line-height:24px; } .select dl:after{content:" ";display:block;clear:both;height:0;overflow:hidden} .select dt{width:80%;margin-left:10%;margin-bottom:5px;position:absolute;cursor: pointer;height:24px;line-height:24px;} .select dd{float:left;display:inline;margin:0 0 5px 5px;} @@ -36,8 +37,8 @@ img{ width:100%;} ul.pagination{display:none;} /*搜索显示*/ .select-result{display: none;} -li.select-result dl{padding: 40px 0 5px 0px;} -li.select-result dt {left:-30px; top:10px;font-weight:bold;width:50px;} +li.select-result dl{padding: 25px 0 5px 0px;} +li.select-result dt {left:-26px; top:0;font-weight:bold;width:50px;} .select-no{color:#999} .select .select-result a{padding-right:20px;background: url("../images/close.png") right 9px no-repeat} @@ -46,7 +47,7 @@ li.select-result dt {left:-30px; top:10px;font-weight:bold;width:50px;} /*排序*/ -.sort-nav { width:100%; border-bottom: 1px solid #eee; background: #fff; overflow: hidden; } +.sort-nav { width:100%; border-bottom: 1px solid #eee; background: #fff; overflow: hidden; height: 30px; } .sort-nav li{ float:left;width:33.33%;height:30px; line-height:30px; text-align:center; padding:0px 0px;} .sort-nav li a{font-size:14px;} .sort-nav li.big{display:none;} @@ -56,16 +57,15 @@ li.select-result dt {left:-30px; top:10px;font-weight:bold;width:50px;} /*筛选条件*/ .select-list{ float:left;display:inline; left:0;width:33.33%; height:30px;} -.select-list dl dt{left:0px; cursor:pointer; top:-10px;text-align: center;} +.select-list dl dt{left:0px; cursor:pointer; text-align: center;} {display:none ;float:left; top:20px; padding-top:5px; z-index:10; left:0px; width:300%;position:absolute;} -.select-list .dd-conent{display:none ;float:left; top:20px; padding-top:5px; z-index:10; left:0px; width:300%;position:absolute; background:#fff;overflow: hidden;} +.select-list .dd-conent{display:none ;float:left; top:30px; z-index:10; left:0px; width:300%;position:absolute; background:#fff;overflow: hidden;} .select-list .dd-conent dd{width:33.33% ;text-align: center;margin-left: 0px;height:25px ;} dl#select2 .dd-conent{ left:-100%; right:-100%;} dl#select3 .dd-conent{ left:-200%; right:0px;} .am-badge{font-size:12px ;padding:0px 0px;background-color: #999999;color: #ffffff;} .theme-popover-mask{z-index:5;width: 100%;height: auto;position:fixed ;background:#000 ;top:0;opacity: 0.6;} -.theme-popover{width: 100%;} /*搜索结果*/ .i-pic.limit {margin:5px;border: 1px #e8e8e8 solid;overflow: hidden;position: relative;cursor: pointer;} @@ -87,8 +87,7 @@ dl#select3 .dd-conent{ left:-200%; right:0px;} .select li.select-result{display: none;} .suggest,.searchAbout,ul.pagination{ display:block;} - .select .title.font-normal{margin-top:0px;margin-left:0px} - .select,.sort-nav{padding:5px 10px;box-shadow: 0px 0px 2px #ccc;margin-top:5px;background: #fff;} + .select,.sort-nav{padding:10px 10px 5px 10px;box-shadow: 0px 0px 2px #ccc;margin-top:5px;background: #fff;} .searchAbout{padding:10px;} .select-list{width:100%;padding:0px 0px;} @@ -107,18 +106,18 @@ dl#select3 .dd-conent{ left:-200%; right:0px;} .sort-nav li{ display:inline; height:35px; line-height:35px; padding:0px 20px;width:auto;border-right:1px dotted #ddd;} .sort-nav li.big{display:block;border: none;} .sort-nav li.first{background: #F5F5F5;color: #000;} + .select-list .dd-conent { padding-top: 10px; } /*筛选条件*/ .select-list,.select-list dl{width:100%;} .select dl dt{left:-100px;top:10px;} - .select-list dl dt{top:5px;} .select dt{width:100px;margin-left:0;text-align:center;color:#666;height:24px;line-height:24px;} .select-list .dd-conent{ display:inline-block;float:left;background: none;width:100%;position: static;} dl#select2 .dd-conent,dl#select3 .dd-conent{ left:0; right:0;} /*搜索结果*/ - li.select-result dl {padding: 10px 0px;} + li.select-result dl {padding: 10px 0px 0px 0px;} .scoll{ margin-top:70px;} .am-slider-default .am-direction-nav a {z-index:0;} @@ -154,4 +153,5 @@ dl#select3 .dd-conent{ left:-200%; right:0px;} .search-pages { display: none; } .search-pages-submit { display: block; } .eliminateCriteria { margin-top: -28px; } + .select .title-tips { padding: 0 5px; } } \ No newline at end of file diff --git a/service/Public/Home/Default/Js/Common.js b/service/Public/Home/Default/Js/Common.js index 5e666b694..fdc0ffddd 100755 --- a/service/Public/Home/Default/Js/Common.js +++ b/service/Public/Home/Default/Js/Common.js @@ -33,7 +33,6 @@ $(function() // 商品分类子级内容显示/隐藏 $(".category-content li").hover(function() { - console.log(1); $(".category-content .category-list li.first .menu-in").css("display", "none"); $(".category-content .category-list li.first").removeClass("hover"); $(this).addClass("hover"); @@ -50,7 +49,7 @@ $(function() { if(!$('#goods-category .category-content').is(":visible")) { - $('#goods-category .category-content').slideDown(300); + $('#goods-category .category-content').slideDown(200); } } diff --git a/service/Public/Home/Default/Js/Search.js b/service/Public/Home/Default/Js/Search.js index 62858e8af..c2bd8321e 100644 --- a/service/Public/Home/Default/Js/Search.js +++ b/service/Public/Home/Default/Js/Search.js @@ -91,32 +91,30 @@ $(function() $(".select dt").on('click', function() { if ($(this).next("div").css("display") == 'none') { $(".theme-popover-mask").height(hh); - $(".theme-popover").css("position", "fixed"); - $(this).next("div").slideToggle("slow"); + $(".theme-popover").css({"position":"fixed", "top":0, "padding-top":"46px"}); + $(this).next("div").slideToggle(300); $(".select div").not($(this).next()).hide(); - } - else{ - $(".theme-popover-mask").height(0); - $(".theme-popover").css("position", "static"); - $(this).next("div").slideUp("slow");; - } - + } else { + $(this).next("div").slideUp(300); + $(".theme-popover-mask").height(0); + $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); + } }) $(document).on("click", ".eliminateCriteria", function() { - $(".dd-conent").hide(); + $(".dd-conent").slideUp(300); }) $(document).on("click", ".select dd", function() { + $(".dd-conent").slideUp(300); $(".theme-popover-mask").height(0); - $(".theme-popover").css("position", "static"); - $(".dd-conent").hide(); + $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); }); $(document).on("click", ".theme-popover-mask", function() { + $(".dd-conent").slideUp(300); $(".theme-popover-mask").height(0); - $(".theme-popover").css("position", "static"); - $(".dd-conent").hide(); + $(".theme-popover").css({"position":"static", "top":0, "padding-top":"0"}); }); } diff --git a/service/Public/Upload/brand/2018/08/20180831123506659500.jpeg b/service/Public/Upload/brand/2018/08/20180831123506659500.jpeg new file mode 100644 index 000000000..00961ea2d Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123506659500.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123612400417.jpeg b/service/Public/Upload/brand/2018/08/20180831123612400417.jpeg new file mode 100644 index 000000000..ebe973bf8 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123612400417.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123638301757.jpeg b/service/Public/Upload/brand/2018/08/20180831123638301757.jpeg new file mode 100644 index 000000000..f1380ea19 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123638301757.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123659295462.jpeg b/service/Public/Upload/brand/2018/08/20180831123659295462.jpeg new file mode 100644 index 000000000..17b7fe917 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123659295462.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123718129432.jpeg b/service/Public/Upload/brand/2018/08/20180831123718129432.jpeg new file mode 100644 index 000000000..a3137df15 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123718129432.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123739604557.jpeg b/service/Public/Upload/brand/2018/08/20180831123739604557.jpeg new file mode 100644 index 000000000..a926f4da4 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123739604557.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123805053207.jpeg b/service/Public/Upload/brand/2018/08/20180831123805053207.jpeg new file mode 100644 index 000000000..13f0eb562 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123805053207.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123832665998.jpeg b/service/Public/Upload/brand/2018/08/20180831123832665998.jpeg new file mode 100644 index 000000000..7368cbb6e Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123832665998.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123901892901.jpeg b/service/Public/Upload/brand/2018/08/20180831123901892901.jpeg new file mode 100644 index 000000000..73fcf486f Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123901892901.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123923979734.jpeg b/service/Public/Upload/brand/2018/08/20180831123923979734.jpeg new file mode 100644 index 000000000..1d1902328 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123923979734.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831123941878091.jpeg b/service/Public/Upload/brand/2018/08/20180831123941878091.jpeg new file mode 100644 index 000000000..d953e273e Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831123941878091.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124001306519.jpeg b/service/Public/Upload/brand/2018/08/20180831124001306519.jpeg new file mode 100644 index 000000000..fc629ba13 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124001306519.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124028863137.jpeg b/service/Public/Upload/brand/2018/08/20180831124028863137.jpeg new file mode 100644 index 000000000..4db4d6889 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124028863137.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124052288940.jpeg b/service/Public/Upload/brand/2018/08/20180831124052288940.jpeg new file mode 100644 index 000000000..6920c7e70 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124052288940.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124114729313.jpeg b/service/Public/Upload/brand/2018/08/20180831124114729313.jpeg new file mode 100644 index 000000000..3de18d7ae Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124114729313.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124204852297.jpeg b/service/Public/Upload/brand/2018/08/20180831124204852297.jpeg new file mode 100644 index 000000000..eb14d9db6 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124204852297.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124220397979.jpeg b/service/Public/Upload/brand/2018/08/20180831124220397979.jpeg new file mode 100644 index 000000000..01d68db19 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124220397979.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124235290388.jpeg b/service/Public/Upload/brand/2018/08/20180831124235290388.jpeg new file mode 100644 index 000000000..166090649 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124235290388.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124253118694.jpeg b/service/Public/Upload/brand/2018/08/20180831124253118694.jpeg new file mode 100644 index 000000000..69aae1286 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124253118694.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124320138615.jpeg b/service/Public/Upload/brand/2018/08/20180831124320138615.jpeg new file mode 100644 index 000000000..de3e8ace8 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124320138615.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124338343861.jpeg b/service/Public/Upload/brand/2018/08/20180831124338343861.jpeg new file mode 100644 index 000000000..7e9b63d92 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124338343861.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124358184873.jpeg b/service/Public/Upload/brand/2018/08/20180831124358184873.jpeg new file mode 100644 index 000000000..01ec03cd2 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124358184873.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124414494883.jpeg b/service/Public/Upload/brand/2018/08/20180831124414494883.jpeg new file mode 100644 index 000000000..2a7a3fa1e Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124414494883.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124432799807.jpeg b/service/Public/Upload/brand/2018/08/20180831124432799807.jpeg new file mode 100644 index 000000000..9e0b794e7 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124432799807.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124447773181.jpeg b/service/Public/Upload/brand/2018/08/20180831124447773181.jpeg new file mode 100644 index 000000000..31f5b3e29 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124447773181.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124503006925.jpeg b/service/Public/Upload/brand/2018/08/20180831124503006925.jpeg new file mode 100644 index 000000000..2cc9fc432 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124503006925.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124520403239.jpeg b/service/Public/Upload/brand/2018/08/20180831124520403239.jpeg new file mode 100644 index 000000000..da04deddf Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124520403239.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124538167027.jpeg b/service/Public/Upload/brand/2018/08/20180831124538167027.jpeg new file mode 100644 index 000000000..9ece83d1c Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124538167027.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124555864230.jpeg b/service/Public/Upload/brand/2018/08/20180831124555864230.jpeg new file mode 100644 index 000000000..cbe0b2c51 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124555864230.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124611120082.jpeg b/service/Public/Upload/brand/2018/08/20180831124611120082.jpeg new file mode 100644 index 000000000..12563fb4b Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124611120082.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124630371456.jpeg b/service/Public/Upload/brand/2018/08/20180831124630371456.jpeg new file mode 100644 index 000000000..70ec0566e Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124630371456.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124711269217.jpeg b/service/Public/Upload/brand/2018/08/20180831124711269217.jpeg new file mode 100644 index 000000000..53c0df65d Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124711269217.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124726804328.jpeg b/service/Public/Upload/brand/2018/08/20180831124726804328.jpeg new file mode 100644 index 000000000..c3f0f3e18 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124726804328.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124745441134.jpeg b/service/Public/Upload/brand/2018/08/20180831124745441134.jpeg new file mode 100644 index 000000000..8412aa3b9 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124745441134.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124802841044.jpeg b/service/Public/Upload/brand/2018/08/20180831124802841044.jpeg new file mode 100644 index 000000000..50be5f362 Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124802841044.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124823875593.jpeg b/service/Public/Upload/brand/2018/08/20180831124823875593.jpeg new file mode 100644 index 000000000..a98139e2c Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124823875593.jpeg differ diff --git a/service/Public/Upload/brand/2018/08/20180831124920751185.png b/service/Public/Upload/brand/2018/08/20180831124920751185.png new file mode 100644 index 000000000..ccc6fd40d Binary files /dev/null and b/service/Public/Upload/brand/2018/08/20180831124920751185.png differ