Browse Source

2025-12-05

技术参数卡【搜索】优化
master
fengyuan_yang 1 month ago
parent
commit
f369e43e7d
  1. 10
      src/views/modules/sampleManagement/technicalSpecificationList.vue

10
src/views/modules/sampleManagement/technicalSpecificationList.vue

@ -1163,7 +1163,7 @@
if ( this.isFilterSearch === false){
this.search()
} else {
this.queryByAnyField(this.filterSearchData)
this.queryByAnyField(this.filterSearchData, false)
}
},
@ -1173,7 +1173,7 @@
if ( this.isFilterSearch === false){
this.search()
} else {
this.queryByAnyField(this.filterSearchData)
this.queryByAnyField(this.filterSearchData, false)
}
},
@ -1565,7 +1565,11 @@
});
},
queryByAnyField(params){
queryByAnyField(params, resetPage = true){
// 1
if (resetPage) {
this.pageIndex = 1
}
params.no = this.pageIndex
params.size = this.pageSize
params.site = this.$store.state.user.site

Loading…
Cancel
Save