第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 laravel 和 vue js 中使用 2 個或更多條件進行過濾

如何在 laravel 和 vue js 中使用 2 個或更多條件進行過濾

函數(shù)式編程 2023-11-11 20:47:56
filterByProject正在工作,但我想添加更多過濾器,即供應商名稱。我想要當我按項目和供應商名稱過濾它時的結(jié)果,它顯示兩次過濾的過濾結(jié)果  <div class="col-md-12">        <div class="row ml-1">             <span style="color:#424242;font-size:15px; margin-right:5px;">Project:</span>             <select class="form-control form-control-sm" style="padding:0;            margin-bottom:5px; height:25px; width:120px;" v-model="filterByProject"        @change="filterproject">               <option>ABC</option>                </select>                   // Supplier name      <select class="form-control form-control-sm" style="padding:0;            margin-bottom:5px; height:25px; width:120px;"               <option>Steel Inc</option>               <option>L Inc</option>                </select>                </div>                 <div class="card card-primary">              <div class="card-header"  style="padding-bottom:0px;">                <h3 class="card-title">Item list&nbsp<span class="fas fa-bookmark"></span>                                </h3>              </div>              <!-- /.card-header -->              <div class="card-body table-responsive p-0">                <table class="table table-hover table-bordered table-sm" >                  <thead>                    <tr>                      <th scope="col">#</th>                      <th scope="col">PO DATE</th>                      <th scope="col">ITM</th>                      <th scope="col">PRJ</th>                      <th scope="col">SUPPLIER</th>                                    </tr>                  </thead>                  <tbody>                    <tr v-for="(fetch,count) in item">                    <td style="height:10px">{{count+1}}</td>                    <td style="height:10px">{{fetch.po_date}}</td>                    <td style="height:10px">{{fetch.project}}</td>                    <td style="height:10px">{{fetch.supplier}}</td>
查看完整描述

2 回答

?
動漫人物

TA貢獻1815條經(jīng)驗 獲得超10個贊

我正在使用此代碼進行多個搜索過濾器組合,請看一下,希望它能為您提供一些幫助。我嘗試分享我能分享的一切。


 public function customUserSearchv2(Request $request) {

        try {

            $the = new Profile();

            $the = $the->newQuery();


            $the->leftJoin('tbl1', 'tbl1.id', '=', 'profile.id');


            if ($request->has('thrapyType') && !empty($request->thrapyType)) {

                $the->where('profile.services', 'LIKE', '%' . $request->thrapyType . '%');

            }


            if ($request->has('the_name') && !empty($request->the_name)) {


                $full_name = explode(" ", $request->the_name);


                $f_name = $full_name[0];

                $the->where('profile.first_name', 'LIKE', '%' . $f_name . '%');

                if (count($full_name) > 1) {

                    $l_name = $full_name[1];

                    if (!empty($l_name)) {

                        $the->orWhere('profile.last_name', 'LIKE', '%' . $l_name . '%');

                    }

                }

            }

            if ($request->has('zipcode') && !empty($request->zipcode)) {

                $the->where('profile.office_address_zip', 'LIKE', '%' . $request->zipcode);

                //$the->orWhere('profile.secondary_address_zip', 'LIKE', '%' .$request->zipcode);

            }

            

            $result = $the->select('profile.*', 'tbl1.name', 'tbl1.email',)->orderBy('profile.id', 'DESC')

                    ->get();


            return apiSuccessHandler($result, 200, "SUCCESS", $request, 'Search completed successfully.');

        } catch (\Exception $e) {

            return apiErrorHandler(500, "INTERNAl SERVER ERROR", $e->getMessage() . ':' . "Server Error Please try after sometime.", $request);

        }

    }

查看JS


<template>

                <label>User Name</label>

                <input type="text" @keyup="list($event)" name="tname" v-model="tname"/>

                

                

                <label>Provider</label>

                <select @change="list($event)" name="provider_type" v-model="provider">

                  <option value selected>Select Provider</option>

                  <option v-for="(ins,index) in provider_type.data" :key="index" :value="ins.provider_name">

                    {{ins.provider_name}}

                  </option>

                </select>


         <div class="th-fimg" v-for="(therapist,index) in filterList.data" :key="index"></div>  

</template>


    <script>

    export default{

    data(){

    return{

      filtered_data: [],

    }

    }

    methods:{

          list(e) {

            let name = "";

              name = this.tname;

              provider = this.provider

            this.$axios

              .get("user/search/v2", {

                headers: apiConst._header,

                params: {

                  name:name,

                  provider: provider

                }

              })

              .then(rec => {

                if (rec.data.data.length <= 0) {

                  this.message = true;

                } else {

                  this.message = false;

                }

                this.filtered_data = rec.data;

              })

              .catch(err => {

                console.log("Filter Error : 207");

              });

          }

    }, computed: {

          filterList() {

            return this.filtered_data;

          }

        }

    }

    </script>


查看完整回答
反對 回復 2023-11-11
?
LEATH

TA貢獻1936條經(jīng)驗 獲得超7個贊

它在 app/Models laravel 8.x 中使用表 PayrollOfficeDeail.php 的模型


use Illuminate\Database\Eloquent\Model

class payroll_office_detail extends Model{

   public scopeSearch(Builder $query,$fieldName,$fieldVal){

        return $query->where($fieldName,'=',$fieldVal);

   }

}

在控制器文件中添加


public function search(Request $request){

$searchFieldName=$request->get('field');

$payroll_office_detail=payroll_office_detail::query();

$payroll_office_detail

   ->leftJoin()

//   -> ....



$payroll_office_detail->search($searchFieldName,'%'.$request->get('q').'%');


return $payroll_office_detail->get();

}


查看完整回答
反對 回復 2023-11-11
  • 2 回答
  • 0 關(guān)注
  • 199 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號