婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子

laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子

熱門標簽:泊頭在哪里辦理400電話 江西電銷機器人收費 欣思維地圖標注 電銷機器人沒有效果怎么樣 江門回撥外呼系統 高德地圖標注位置怎么標注 杭州語音電銷機器人 天潤融通外呼系統好嗎 高德地圖標注店鋪收費嗎

首先先看下效果圖

這是添加的時候 可以上傳照片

這是編輯的時候 可以修改照片

代碼部分:

先看控制器:

/***
   * 添加商戶
   * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
   */
  public function add()
  {
 
    $data = null;
    return _view('admin.merchant.merchant.edit', compact('data'));
  }
 
  /***
   * 添加商戶
   * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
   */
  public function store(StoreMenchantRequest $request)
  {
    //判斷手機號是否重復 重復不能添加
    //后面開發可能會去掉這個判斷
    $merchant = Merchant::where('mobile', $request->mobile)->first();
    if (!empty($merchant)) {
      return back()->withErrors('該用戶已存在');
    }
    $token = str_random(60);
    $api_token = $this->getToken($token);
    $newMerchantData = [
      'mobile' => $request->mobile,
      'api_token' => $api_token,
    ];
    DB::beginTransaction();
    $newMerchant = Merchant::create($newMerchantData);
    $newData = [
      'merchant_id' => $newMerchant->id,//Merchantid
      'merchant_principal' => $request->merchant_principal,//負責人
      'merchant_name' => $request->merchant_name,//商家名稱
      'merchant_short_name' => $request->merchant_short_name,//商家簡稱
      'merchant_address' => $request->merchant_address,//商家地址
      'business_num' => $request->business_num,//注冊號
      'business_address' => $request->business_address,//營業地址
      'business_name' => $request->business_name,//營業執照名稱
      'business_person' => $request->person,//營業執照法人
      'identity_name' => $request->person,//身份證姓名
      'identity_num' => $request->identity_num,//身份證號
    ];
    //上傳縮略圖
    $input = $request->all();
    if (isset($input['file'])  is_object($input['file'])) {
 
      $file_name = save_image_file($input['file'], 'merchant_infos');
      if (!$file_name) {
        return back()->with('msg', '圖片上傳失敗,請重試!');
      }
//      dd($file_name);
      $input['thumbnail'] = $file_name;
      unset($input['_token']);
      unset($input['file']);
    } else {
      return back()->with('msg', '請上傳圖片');
    }
    //上傳內景圖1
    if (isset($input['image1'])  is_object($input['image1'])) {
 
      $file_name_1 = save_image_file($input['image1'], 'merchant_infos');
      if (!$file_name_1) {
        return back()->with('msg', '圖片上傳失敗,請重試!');
      }
 
      $input['interior_figure_one'] = $file_name_1;
      unset($input['_token']);
      unset($input['image1']);
    } else {
      return back()->with('msg', '請上傳圖片');
    }
    //上傳內景圖2
    if (isset($input['image2'])  is_object($input['image2'])) {
 
      $file_name_2 = save_image_file($input['image2'], 'merchant_infos');
      if (!$file_name_2) {
        return back()->with('msg', '圖片上傳失敗,請重試!');
      }
      $input['interior_figure_two'] = $file_name_2;
      unset($input['_token']);
      unset($input['image2']);
    } else {
      return back()->with('msg', '請上傳圖片');
    }
    //上傳內景圖3
    if (isset($input['image3'])  is_object($input['image3'])) {
 
      $file_name_3 = save_image_file($input['image3'], 'merchant_infos');
      if (!$file_name_3) {
        return back()->with('msg', '圖片上傳失敗,請重試!');
      }
      $input['interior_figure_three'] = $file_name_3;
      unset($input['_token']);
      unset($input['image3']);
    } else {
      return back()->with('msg', '請上傳圖片');
    }
 
    $merchantInfo = MerchantInfo::where('merchant_id', $newMerchant->id)->first();
    if (!empty($merchantInfo)) {
      return back()->withErrors('該用戶已錄入信息');
    }
    $homestayInfo = HomestayInfo::where('merchant_id', $newMerchant->id)->first();
    if (!empty($homestayInfo)) {
      return back()->withErrors('該用戶已錄入信息');
    }
    //錄入商戶信息
    $newData['thumbnail'] = $input['thumbnail'];
    $newData['interior_figure_one'] = $input['interior_figure_one'];
    $newData['interior_figure_two'] = $input['interior_figure_two'];
    $newData['interior_figure_three'] = $input['interior_figure_three'];
    $newData['content'] = $input['content'];
    $newMerchantInfo = MerchantInfo::create($newData);
    $newHomestayInfo = HomestayInfo::create($newData);
    if ($newMerchantInfo  $newHomestayInfo  $newMerchant) {
      DB::commit();
      admin_action_logs($newMerchant, "添加商戶成功");
      return redirect()->route('admin.merchant.index')->with('msg', '添加成功');
    } else {
      DB::rollback();
      return back()->withErrors('添加失敗,請聯系管理員');
    }
 
 
  }

這邊封裝了一個上傳圖片的方法,調用即可

**
 * 調用的文件中需要 use Illuminate\Support\Facades\Input; Illuminate\Support\Facades\Storage;
 * save_image_file 保存圖片文件 ,存在Storage::disk('uploads') 目錄下
 * @var $file object 上傳的圖片文件,具體是在 request 中的 UploadedFile 類型的對象
 * @var $prefix_name string 可選保存的文件名前綴
 * @var $path string 文件路徑
 * @return bool/string 如果通過驗證 則返回在新的文件名
 */
if (!function_exists('save_image_file')) {
 
  function save_image_file($file, $prefix_name = '', $path = 'serve')
  {
    $file = isset($file) ? $file : null;
    if ($file != null  $file->isValid()) {
      // 獲取文件相關信息
      $originalName = $file->getClientOriginalName(); // 文件原名
      $ext = $file->getClientOriginalExtension();   // 擴展名
      //dd($ext);
      $file->getClientOriginalName();
 
      if ($ext == ""  $file->getClientOriginalName() == 'blob') {
        $ext = 'png';
      }
      if (!preg_match('/jpg|png|gif$/is', $ext)) {
        return false;
      }
      //dd($file->getRealPath());
      $realPath = $file->getRealPath();  //臨時文件的絕對路徑
      $type = $file->getClientMimeType();   // image/jpeg
      // 上傳文件
      $filename = $prefix_name . '-' . date('Y-m-d-H-i-s') . '-' . uniqid() . '.' . $ext;
      //dd($filename);
      $bool = Storage::disk($path)->put($filename, file_get_contents($realPath));
      if (!$bool) return false;
      return $filename;
    }
    return false;
  }
}

接下來是編輯時候 顯示已經上傳的圖片 并且可以進行修改:

div class="row">
  div class="col-lg-6 col-sm-8 col-xs-12">
    div class="panel panel-default">
      {{ Form::open(['method'=>'post','route' => ['admin.merchant.add_img_store'],'enctype'=>'multipart/form-data']) }}
      div class="panel-heading">商戶圖片/div>
      div class="panel-body">
        input type="hidden" name="id" value="{{$data->id}}">
        div class=" form-group">
          ?php $hasUrl = old_or_new_field('thumbnail', $data); ?>
          div class="form-group {{!$hasUrl or 'has-error'}} has-feedback">
            label class="control-label" for="file">
              span class="font-red">*/span>
              span>縮略圖:/span>
              span class="font-gray">(寬高為120px:120px):/span>
            /label>
            div class="input-group">
              @if( $hasUrl )
                input type="file" class="file-preview form-control" name="file" id="file" accept="image/*"
                    value="{{ old_or_new_field('thumbnail',$data) }}">
              @else
                input type="file" class="file-preview form-control validate" name="file" required id="file"
                    accept="image/*"
                    value="{{ old_or_new_field('thumbnail',$data) }}">
              @endif
            /div>
          /div>
          div class="file-preview-wrap">
            img
                @if( old_or_new_field('thumbnail',$data) )
                src="{{asset('storage/serve').'/'.old_or_new_field('thumbnail',$data)}}" data-src="{{ asset('storage/serve'.old_or_new_img('thumbnail', $data, false))}}"
                @else
 
                src="{{asset('storage/serve').'/'. (isset($data->merchantInfo->thumbnail)?$data->merchantInfo->thumbnail:' ')}}" data-src="{{ asset('storage/serve').'/'. (isset($data->merchantInfo->thumbnail)?$data->merchantInfo->thumbnail:' ')}}"
                @endif
                id="file-preview" class="img-thumbnail" alt="圖片預覽" data-magnify="gallery">
 
          /div>
        /div>
        div>
          ?php $hasUrl = old_or_new_field('interior_figure_one', $data); ?>
          div class="form-group {{!$hasUrl or 'has-error'}} has-feedback">
            label class="control-label" for="file">
              span class="font-red">*/span>
              span>內景圖1:/span>
              span class="font-gray">(寬高為375px:200px):/span>
            /label>
            div class="input-group">
              @if( $hasUrl )
                input type="file" class="file-preview-second form-control" name="image1" id="image1" accept="image/*"
                    value="{{ old_or_new_field('interior_figure_one',$data) }}">
              @else
                input type="file" class="file-preview-second form-control validate" name="image1" required id="image1"
                    accept="image/*"
                    value="{{ old_or_new_field('interior_figure_one',$data) }}">
              @endif
            /div>
          /div>
          div class="file-preview-wrap">
            img
                @if( old_or_new_field('interior_figure_one',$data) )
                src="{{asset('storage/serve').'/'.old_or_new_field('interior_figure_one',$data)}}" data-src="{{ asset('storage/serve'.old_or_new_img('interior_figure_one', $data, false))}}"
                @else
                src="{{asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_one)?$data->merchantInfo->interior_figure_one:'')}}" data-src="{{ asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_one)?$data->merchantInfo->interior_figure_one:'')}}"
 
                @endif
                width="375px" height="200px" id="file-preview-second" class="img-thumbnail" alt="圖片預覽" data-magnify="gallery">
          /div>
        /div>
        div >
          ?php $hasUrl = old_or_new_field('interior_figure_two', $data); ?>
          div class="form-group {{!$hasUrl or 'has-error'}} has-feedback">
            label class="control-label" for="file">
              span class="font-red">*/span>
              span>內景圖2:/span>
              span class="font-gray">(寬高為375px:200px):/span>
            /label>
            div class="input-group">
              @if( $hasUrl )
                input type="file" class="file-preview-third form-control" name="image2" id="image2" accept="image/*"
                    value="{{ old_or_new_field('interior_figure_two',$data) }}">
              @else
                input type="file" class="file-preview-third form-control validate" name="image2" required id="image2"
                    accept="image/*"
                    value="{{ old_or_new_field('interior_figure_two',$data) }}">
              @endif
            /div>
          /div>
          div class="file-preview-wrap">
            img
                @if( old_or_new_field('interior_figure_two',$data) )
                {{--src="{{route('Img.uploads.file',[old_or_new_field('url',$data)])}}"--}}
                src="{{asset('storage/serve').'/'.old_or_new_field('interior_figure_two',$data)}}" data-src="{{ asset('storage/serve'.old_or_new_img('interior_figure_two', $data, false))}}"
                @else
                src="{{asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_two)?$data->merchantInfo->interior_figure_two:'')}}" data-src="{{ asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_two)?$data->merchantInfo->interior_figure_two:'')}}"
                @endif
                width="375px" height="200px" id="file-preview-third" class="img-thumbnail" alt="圖片預覽" data-magnify="gallery">
          /div>
        /div>
        div>
          ?php $hasUrl = old_or_new_field('interior_figure_three', $data); ?>
          div class="form-group {{!$hasUrl or 'has-error'}} has-feedback">
            label class="control-label" for="file">
              span class="font-red">*/span>
              span>縮略圖3:/span>
              span class="font-gray">(寬高為375px:200px):/span>
            /label>
            div class="input-group">
              @if( $hasUrl )
                input type="file" class="file-preview-forth form-control" name="image3" id="image3" accept="image/*"
                    value="{{ old_or_new_field('interior_figure_three',$data) }}">
              @else
                input type="file" class="file-preview-forth form-control validate" name="image3" required id="image3"
                    accept="image/*"
                    value="{{ old_or_new_field('interior_figure_three',$data) }}" >
              @endif
            /div>
          /div>
          div class="file-preview-wrap">
            img
                @if( old_or_new_field('interior_figure_three',$data) )
                {{--src="{{route('Img.uploads.file',[old_or_new_field('url',$data)])}}"--}}
                src="{{asset('storage/serve').'/'.old_or_new_field('interior_figure_three',$data)}}" data-src="{{ asset('storage/serve'.old_or_new_img('interior_figure_three', $data, false))}}"
                @else
                src="{{asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_three)?$data->merchantInfo->interior_figure_three:'')}}" data-src="{{ asset('storage/serve').'/'.(isset($data->merchantInfo->interior_figure_three)?$data->merchantInfo->interior_figure_three:'')}}"
                @endif
                width="375px" height="200px" id="file-preview-forth" class="img-thumbnail" alt="圖片預覽" data-magnify="gallery">
          /div>
        /div>
      /div>
 
      div class="text-center margin-bottom-sm">
        button class="pretty-btn"> 編輯商戶/button>
      /div>
      {{ Form::close() }}
    /div>
  /div>
/div>

編輯這邊 的控制器代碼是:

/***
 * 添加圖片
 * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 */
public function add_img()
{
  $data = null;
  return _view('admin.merchant.merchant.add', compact('data'));
}
 
/***
 * 保存圖片
 * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 */
public function add_img_store(Request $request)
{
  //上傳縮略圖
  $input = $request->all();
 
  if (isset($input['file'])  is_object($input['file'])) {
 
    $file_name = save_image_file($input['file'], 'merchant_infos');
    if (!$file_name) {
      return back()->with('msg', '圖片上傳失敗,請重試!');
    }
 
    $input['thumbnail'] = $file_name;
    unset($input['_token']);
    unset($input['file']);
  } else {
    return back()->with('msg', '請上傳圖片');
  }
  //上傳內景圖1
  if (isset($input['image1'])  is_object($input['image1'])) {
 
    $file_name_1 = save_image_file($input['image1'], 'merchant_infos');
    if (!$file_name_1) {
      return back()->with('msg', '圖片上傳失敗,請重試!');
    }
 
    $input['interior_figure_one'] = $file_name_1;
    unset($input['_token']);
    unset($input['image1']);
  } else {
    return back()->with('msg', '請上傳圖片');
  }
  //上傳內景圖2
  if (isset($input['image2'])  is_object($input['image2'])) {
 
    $file_name_2 = save_image_file($input['image2'], 'merchant_infos');
    if (!$file_name_2) {
      return back()->with('msg', '圖片上傳失敗,請重試!');
    }
    $input['interior_figure_two'] = $file_name_2;
    unset($input['_token']);
    unset($input['image2']);
  } else {
    return back()->with('msg', '請上傳圖片');
  }
  //上傳內景圖3
  if (isset($input['image3'])  is_object($input['image3'])) {
 
    $file_name_3 = save_image_file($input['image3'], 'merchant_infos');
    if (!$file_name_3) {
      return back()->with('msg', '圖片上傳失敗,請重試!');
    }
    $input['interior_figure_three'] = $file_name_3;
    unset($input['_token']);
    unset($input['image3']);
  } else {
    return back()->with('msg', '請上傳圖片');
  }
  //錄入商戶信息
 
  $merchang_info = MerchantInfo::where('merchant_id', '=', $input['id'])->first();
  if (empty($merchang_info)) {
    $newData['thumbnail'] = $input['thumbnail'];
    $newData['merchant_id'] = $input['id'];
    $newData['interior_figure_one'] = $input['interior_figure_one'];
    $newData['interior_figure_two'] = $input['interior_figure_two'];
    $newData['interior_figure_three'] = $input['interior_figure_three'];
    $newData['content']='';
    $result = MerchantInfo::create($newData);
  } /* $newData['thumbnail']=$input['thumbnail'];
  $newData['interior_figure_one']=$input['interior_figure_one'];
  $newData['interior_figure_two']=$input['interior_figure_two'];
  $newData['interior_figure_three']=$input['interior_figure_three'];
  // $newData['content']=$input['content'];
  $newMerchantInfo = MerchantInfo::create($newData);*/
  else {
    $merchang_info->thumbnail = $input['thumbnail']??'';
    $merchang_info->interior_figure_one = $input['interior_figure_one']??'';
    $merchang_info->interior_figure_two = $input['interior_figure_two']??'';
    $merchang_info->interior_figure_three = $input['interior_figure_three']??'';
    $result = $merchang_info->save();
  }
  if ($result) {
    DB::commit();
    admin_action_logs($result, "編輯商戶成功");
    return redirect()->route('admin.merchant.index')->with('msg', '編輯成功');
  } else {
    DB::rollback();
    return back()->withErrors('編輯失敗,請聯系管理員');
  }
}

以上這篇laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • Laravel+Layer實現圖片上傳功能(整理篇)
  • PHP Laravel 上傳圖片、文件等類封裝
  • laravel實現一個上傳圖片的接口,并建立軟鏈接,訪問圖片的方法
  • laravel 實現上傳圖片到本地和前臺訪問示例
  • laravel實現上傳圖片的兩種方式小結
  • Laravel框架實現的上傳圖片到七牛功能詳解
  • laravel 多圖上傳及圖片的存儲例子
  • laravel實現上傳圖片并在頁面顯示的例子
  • laravel實現上傳圖片,并且制作縮略圖,按照日期存放的代碼
  • laravel框架上傳圖片實現實時預覽功能
  • laravel5.5框架的上傳圖片功能實例分析【僅傳到服務器端】

標簽:石嘴山 內江 深圳 駐馬店 大同 雙鴨山 平涼 江門

巨人網絡通訊聲明:本文標題《laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子》,本文關鍵詞  laravel,實現,圖片,上傳,預覽,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子》相關的同類信息!
  • 本頁收集關于laravel實現圖片上傳預覽,及編輯時可更換圖片,并實時變化的例子的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    韩日欧美一区二区三区| 亚洲色图另类专区| 亚洲男人的天堂在线aⅴ视频| 国内成+人亚洲+欧美+综合在线| 欧美撒尿777hd撒尿| 亚洲色图一区二区三区| 色婷婷av一区| 亚洲午夜在线电影| 欧美午夜精品久久久久久超碰 | 国产传媒久久文化传媒| 日韩精品一区二区三区在线播放| 日本午夜一本久久久综合| 欧美精品一卡两卡| 国产一区二三区| ...xxx性欧美| 欧美高清www午色夜在线视频| 老汉av免费一区二区三区| 久久久亚洲高清| 色婷婷亚洲综合| 美女脱光内衣内裤视频久久影院| 久久影院午夜片一区| 99久久国产免费看| 首页综合国产亚洲丝袜| 久久久精品国产免大香伊| 99国产欧美另类久久久精品| 午夜精品视频在线观看| 国产欧美视频一区二区| 欧美日韩一本到| 国产乱子轮精品视频| 亚洲天堂2014| 日韩亚洲欧美综合| 99久久综合色| 精品一区二区三区视频 | 捆绑变态av一区二区三区| 国产精品久久久爽爽爽麻豆色哟哟 | 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | voyeur盗摄精品| 亚洲精品一区二区三区四区高清| 国产一区二区三区电影在线观看 | 日韩欧美国产综合在线一区二区三区| 亚洲日本欧美天堂| 欧美一区二区三区电影| 99久久久久免费精品国产| 欧美喷水一区二区| 一区二区中文视频| 极品少妇一区二区三区精品视频| 欧美精品一二三| 亚洲精品一区二区三区精华液| 亚洲伊人色欲综合网| 国产精品一区二区久久不卡| 亚洲一区二区综合| 亚洲免费av在线| 国产精品灌醉下药二区| 2024国产精品| 91麻豆精品国产自产在线| 91久久免费观看| 色av成人天堂桃色av| 欧美妇女性影城| 国产九九视频一区二区三区| 亚洲国产精品一区二区久久恐怖片| 欧美日韩国产精品成人| 国产欧美一区二区精品忘忧草| 国产日本欧美一区二区| 成人动漫一区二区| 亚洲综合清纯丝袜自拍| 亚洲精品一二三| 欧美精品自拍偷拍| 欧美色综合久久| 国产一区二区三区精品视频| 亚洲成人激情社区| 精品三级在线观看| 2023国产精品| 国产日产欧美一区二区视频| 欧美日韩国产综合久久| 制服丝袜亚洲网站| 在线看日本不卡| 毛片基地黄久久久久久天堂| 久久99国产精品成人| 五月天精品一区二区三区| 蜜臀精品一区二区三区在线观看| 亚洲精品中文在线影院| 亚洲va欧美va天堂v国产综合| 亚洲精品国产精华液| 亚洲午夜精品久久久久久久久| 99麻豆久久久国产精品免费优播| 91蝌蚪porny| 色综合视频一区二区三区高清| 欧美性一级生活| 欧美最新大片在线看 | 久久久www成人免费毛片麻豆| 在线不卡的av| 久久中文娱乐网| 久久精品视频网| 亚洲国产日韩综合久久精品| 久久精品日韩一区二区三区| 中文字幕视频一区| 国产精品免费丝袜| 综合久久久久综合| 精品一区二区三区不卡| 国产一区不卡在线| 日本久久电影网| 欧美日韩国产高清一区二区| 久久亚洲影视婷婷| 久久久国产一区二区三区四区小说 | 色香色香欲天天天影视综合网| 91美女在线看| 91精品视频网| 精品乱人伦一区二区三区| 亚洲欧美日本韩国| 亚洲午夜在线电影| 色综合久久久久综合99| 成人毛片在线观看| 精品国产亚洲在线| 欧美一区二区三级| 一区二区成人在线视频| 韩国欧美国产一区| 色综合久久中文综合久久97| 日韩精品一区二区三区中文不卡 | 日韩一区二区三区免费看 | 92精品国产成人观看免费 | 亚洲高清久久久| 91女人视频在线观看| 欧美日韩大陆一区二区| 亚洲人成网站影音先锋播放| 日韩一区精品视频| 欧美精品九九99久久| 国产欧美一区二区精品性色 | 欧美一区二区视频在线观看2020 | 亚洲视频香蕉人妖| 免费高清在线一区| 成人免费毛片a| 欧美日韩成人高清| 国产亚洲精品bt天堂精选| 久久国产精品色| 色婷婷亚洲婷婷| 精品1区2区在线观看| 亚洲精品国产一区二区精华液| 精品一区二区三区在线视频| 欧美mv日韩mv亚洲| 亚洲国产三级在线| 欧美精品一二三| 亚洲已满18点击进入久久| 欧美调教femdomvk| 中文字幕视频一区| 91福利资源站| 中文字幕高清不卡| voyeur盗摄精品| 国产亚洲精品福利| 91视频在线观看免费| 国产精品午夜在线观看| 色哟哟精品一区| 亚洲欧美一区二区在线观看| 欧美色精品天天在线观看视频| 国产精品久久三区| 欧美军同video69gay| 久久精品一区四区| 91美女片黄在线观看91美女| 欧美肥妇bbw| 国产福利一区二区| 中文字幕一区av| 欧美精品丝袜中出| 日韩一区二区三区四区五区六区| 日日夜夜免费精品视频| 337p日本欧洲亚洲大胆色噜噜| 久久精品国产一区二区三区免费看| 久久亚洲精华国产精华液| 九九热在线视频观看这里只有精品| 国产日产欧美一区| 成人免费视频免费观看| 丝袜脚交一区二区| 日韩一本二本av| 韩国成人精品a∨在线观看| wwwwww.欧美系列| 男女激情视频一区| 日韩精品中文字幕在线不卡尤物 | 午夜电影网一区| 91麻豆精品国产91久久久久| 成人黄色av网站在线| 中文字幕精品三区| 精品久久五月天| 国产一区二区调教| 亚洲成人动漫在线免费观看| 日韩一级黄色片| 欧美日韩美女一区二区| 成人欧美一区二区三区1314| 日韩免费高清av| 欧美日韩二区三区| 国产精品一级黄| 久久精品国产在热久久| 国产日韩欧美一区二区三区综合| 欧美喷水一区二区| 国产伦精品一区二区三区免费| 日本不卡一二三区黄网| 国产欧美日韩亚州综合| 欧美成人aa大片| 国产一区二区美女| 亚洲一区二区三区在线| 久久不见久久见免费视频1| 一色屋精品亚洲香蕉网站| 国产成人午夜片在线观看高清观看|