jufubao-admin-library 1.1.89 → 1.1.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -488,7 +488,25 @@ export default {
|
|
|
488
488
|
value:'jd',
|
|
489
489
|
label:'京东物流',
|
|
490
490
|
}],
|
|
491
|
-
}
|
|
491
|
+
},
|
|
492
|
+
this.projectType==='wholesale'&&{
|
|
493
|
+
label: "状态:", //label
|
|
494
|
+
ele: "xd-select-list", //package 名称
|
|
495
|
+
valueKey: "site_product_status", //form[valueKey]
|
|
496
|
+
value: [], //v-model
|
|
497
|
+
placeholder: "请选择状态",
|
|
498
|
+
multiple: false, //多选
|
|
499
|
+
list: [
|
|
500
|
+
{
|
|
501
|
+
label:'已上架',
|
|
502
|
+
value:'Y'
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
label:'已下架',
|
|
506
|
+
value:'N'
|
|
507
|
+
},
|
|
508
|
+
],
|
|
509
|
+
},
|
|
492
510
|
].filter(i => i);
|
|
493
511
|
this.searchStatus = true
|
|
494
512
|
this.renderSearchKey = Date.now()
|