|
@@ -24,24 +24,34 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ searchName: null,
|
|
|
icon: require('../assets/jt.png')
|
|
|
};
|
|
|
},
|
|
|
async mounted() {
|
|
|
- const searchName = sessionStorage.getItem('search');
|
|
|
- await this.search({ search: searchName });
|
|
|
+ // this.searchName = sessionStorage.getItem('search');
|
|
|
+ this.searchName = this.$route.params.search;
|
|
|
+ console.log(this.searchName);
|
|
|
},
|
|
|
methods: {
|
|
|
...mapActions(['search']),
|
|
|
// 列表点击
|
|
|
newClick(e) {
|
|
|
this.$router.push(`/details/${e._id}`);
|
|
|
+ },
|
|
|
+ async query() {
|
|
|
+ await this.search({ search: this.searchName });
|
|
|
}
|
|
|
},
|
|
|
filters: {
|
|
|
dates(e) {
|
|
|
return moment(e).format('YYYY-MM-DD');
|
|
|
}
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ searchName(val) {
|
|
|
+ this.query();
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|