|
|
|
@ -1593,15 +1593,18 @@ |
|
|
|
params.size = this.pageSize |
|
|
|
params.site = this.$store.state.user.site |
|
|
|
params.username = this.$store.state.user.name |
|
|
|
params.userId = this.$store.state.user.id |
|
|
|
params.userId = this.$store.state.user.id.toString() |
|
|
|
this.dataListLoading = true; |
|
|
|
technicalSpecificationListSearchByAnyField(params).then(({data})=>{ |
|
|
|
if (data && data.code === 0){ |
|
|
|
this.dataList1 = data.page.list |
|
|
|
}else { |
|
|
|
this.$message.warning(data.msg) |
|
|
|
} |
|
|
|
this.dataListLoading = false; |
|
|
|
}).catch((error)=>{ |
|
|
|
this.$message.error(error) |
|
|
|
this.dataListLoading = false; |
|
|
|
}) |
|
|
|
this.filterSearchData = params |
|
|
|
this.isFilterSearch = true |
|
|
|
|