|
@@ -55,12 +55,15 @@ const ProductType = {
|
|
|
this.defaultVal = value
|
|
|
this.$emit('change', this.defaultVal)
|
|
|
},
|
|
|
- // 产品分类列表
|
|
|
+ // 产品分类列表 sysFlag: 1 箭冠 0 自建
|
|
|
getProductType () {
|
|
|
const params = {}
|
|
|
if(this.tenantId!="NONE"){
|
|
|
params.tenantId = this.tenantId
|
|
|
}
|
|
|
+ if(this.tenantId=="NONE"){
|
|
|
+ params.sysFlag = '1'
|
|
|
+ }
|
|
|
if(this.isDealer){
|
|
|
dealerProductTypeList(params).then(res => {
|
|
|
if (res.status == 200) {
|