|
@@ -39,6 +39,10 @@ export default {
|
|
|
placeholder: {
|
|
|
type: String,
|
|
|
default: '请输入名称搜索'
|
|
|
+ },
|
|
|
+ cooperateFlag: {
|
|
|
+ type: String,
|
|
|
+ default: undefined
|
|
|
}
|
|
|
},
|
|
|
data () {
|
|
@@ -63,6 +67,9 @@ export default {
|
|
|
params.dealerSn = this.itemSn
|
|
|
} else {
|
|
|
params.nameLike = dealerName
|
|
|
+ if (this.cooperateFlag) {
|
|
|
+ params.cooperateFlag = this.cooperateFlag
|
|
|
+ }
|
|
|
}
|
|
|
dealerQueryList(params).then(res => {
|
|
|
if (fetchId !== this.lastFetchId) {
|