Commit 30fd449c authored by 我在何方's avatar 我在何方

异常商品列表加参数status=0

parent 98be934f
......@@ -39,6 +39,11 @@ export default {
determined: {
type: Boolean,
default: false
},
// 是否显示已有商品,不传默认
status: {
type: [String, Number],
default: null
}
},
data(){
......@@ -90,7 +95,8 @@ export default {
remoteMethod(keyword){
let params = {
pageSize: keyword ? 100000 : 10,
filter: !this.determined
filter: !this.determined,
status:this.status
}
if(this.productType){
params.typeId = this.productType
......
......@@ -348,6 +348,7 @@
class="mb-0 mr-0"
>
<product-selector
:status="0"
@hook:mounted="onTableMounted"
v-model="productId2"
@change = "onProductChange($event)"
......@@ -368,6 +369,7 @@
>
<product-selector
lang="En"
:status="0"
v-model="productId1"
@change = "onProductChange($event)"
/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment