This commit is contained in:
parent
c29cf811fc
commit
731faf5367
|
|
@ -15,7 +15,7 @@
|
||||||
<el-input v-model="filter.email" size="small" placeholder="{{ __('customer.email') }}"></el-input>
|
<el-input v-model="filter.email" size="small" placeholder="{{ __('customer.email') }}"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="{{ __('customer.customer_group') }}">
|
<el-form-item label="{{ __('customer.customer_group') }}">
|
||||||
<el-select size="small" v-model="filter.customer_group" placeholder="{{ __('common.please_choose') }}">
|
<el-select size="small" v-model="filter.customer_group_id" placeholder="{{ __('common.please_choose') }}">
|
||||||
<el-option v-for="item in source.customer_group" :key="item.id" :label="item.name"
|
<el-option v-for="item in source.customer_group" :key="item.id" :label="item.name"
|
||||||
:value="item.id + ''">
|
:value="item.id + ''">
|
||||||
</el-option>
|
</el-option>
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
filter: {
|
filter: {
|
||||||
email: bk.getQueryString('email'),
|
email: bk.getQueryString('email'),
|
||||||
name: bk.getQueryString('name'),
|
name: bk.getQueryString('name'),
|
||||||
customer_group: bk.getQueryString('customer_group'),
|
customer_group_id: bk.getQueryString('customer_group_id'),
|
||||||
status: bk.getQueryString('status'),
|
status: bk.getQueryString('status'),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@if ($product['active'])
|
||||||
<div class="quantity-btns d-flex">
|
<div class="quantity-btns d-flex">
|
||||||
<div class="quantity-wrap">
|
<div class="quantity-wrap">
|
||||||
<input type="text" class="form-control" :disabled="!product.quantity" onkeyup="this.value=this.value.replace(/\D/g,'')" v-model="quantity" name="quantity">
|
<input type="text" class="form-control" :disabled="!product.quantity" onkeyup="this.value=this.value.replace(/\D/g,'')" v-model="quantity" name="quantity">
|
||||||
|
|
@ -111,6 +112,9 @@
|
||||||
<i class="bi bi-heart{{ $product['in_wishlist'] ? '-fill' : '' }} me-1"></i> {{ __('shop/products.add_to_favorites') }}
|
<i class="bi bi-heart{{ $product['in_wishlist'] ? '-fill' : '' }} me-1"></i> {{ __('shop/products.add_to_favorites') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@else
|
||||||
|
<div class="text-danger"><i class="bi bi-exclamation-circle-fill"></i> {{ __('product.has_been_inactive') }}</div>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue