fix:选作者后自动展开出版社,选出版社后自动展开作者
This commit is contained in:
parent
97e2d4ed23
commit
034471733d
@ -3498,8 +3498,11 @@ export default {
|
||||
selectNoIsbnAuthor(item) {
|
||||
this.noIsbnAuthor = typeof item === 'string' ? item : (item.showName || '')
|
||||
this.noIsbnAuthorDropdownVisible = false
|
||||
// 选择作者后:一次获取出版社/分类/作者(全部) + 重搜在售商品
|
||||
// 选择作者后:展开出版社,一次获取出版社/分类/作者(全部) + 重搜在售商品
|
||||
this.fetchNoIsbnBookData()
|
||||
this.$nextTick(function() {
|
||||
this.noIsbnPublisherDropdownVisible = true
|
||||
}.bind(this))
|
||||
this.debouncedReSearch()
|
||||
},
|
||||
|
||||
@ -3508,8 +3511,11 @@ export default {
|
||||
this.noIsbnPublisher = typeof item === 'string' ? item : (item.showName || '')
|
||||
this.noIsbnSelectedPublisherValue = typeof item === 'object' && item.value ? item.value : ''
|
||||
this.noIsbnPublisherDropdownVisible = false
|
||||
// 选择出版社后:一次获取出版社/分类/作者(全部) + 重搜在售商品
|
||||
// 选择出版社后:展开作者,一次获取出版社/分类/作者(全部) + 重搜在售商品
|
||||
this.fetchNoIsbnBookData()
|
||||
this.$nextTick(function() {
|
||||
this.noIsbnAuthorDropdownVisible = true
|
||||
}.bind(this))
|
||||
this.debouncedReSearch()
|
||||
},
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user