|
@@ -33,7 +33,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-list-box">
|
|
<div class="content-list-box">
|
|
- <potential-list :key="filters.listKey" @goDetail="goDetail"
|
|
|
|
|
|
+ <potential-list @goDetail="goDetail"
|
|
@follow="changeFollow"
|
|
@follow="changeFollow"
|
|
@remove="changeRemove"
|
|
@remove="changeRemove"
|
|
@delete="changeDelete"
|
|
@delete="changeDelete"
|
|
@@ -114,6 +114,7 @@ export default {
|
|
},
|
|
},
|
|
changeSubmitInfo (type) {
|
|
changeSubmitInfo (type) {
|
|
if (type) {
|
|
if (type) {
|
|
|
|
+ this.filters.searchbool = 1
|
|
this.$refs.pushList.doQuery(this.filters)
|
|
this.$refs.pushList.doQuery(this.filters)
|
|
} else {
|
|
} else {
|
|
this.filters = Object.assign({}, this.$options.data.bind(this)().filters)
|
|
this.filters = Object.assign({}, this.$options.data.bind(this)().filters)
|
|
@@ -122,8 +123,13 @@ export default {
|
|
this.$refs.buyerclassSelector.setCateState()
|
|
this.$refs.buyerclassSelector.setCateState()
|
|
this.$refs.businessScopeSelector.setState()
|
|
this.$refs.businessScopeSelector.setState()
|
|
this.changeBusiness([])
|
|
this.changeBusiness([])
|
|
|
|
+ this.recoverCreate()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ recoverCreate () {
|
|
|
|
+ this.filters.searchbool = 0
|
|
|
|
+ this.$refs.pushList.doQuery(this.filters)
|
|
|
|
+ },
|
|
goDetail (item) {
|
|
goDetail (item) {
|
|
let routeUrl = {}
|
|
let routeUrl = {}
|
|
if (this.filters.pcor === 'C') {
|
|
if (this.filters.pcor === 'C') {
|
|
@@ -185,6 +191,9 @@ export default {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ mounted () {
|
|
|
|
+ this.recoverCreate()
|
|
|
|
+ },
|
|
async created () {
|
|
async created () {
|
|
if (!this.scope.length) {
|
|
if (!this.scope.length) {
|
|
await this.$store.dispatch('user/getKeywordsList')
|
|
await this.$store.dispatch('user/getKeywordsList')
|