Browse Source

2025/6/19

master
Aoi_Tori 8 months ago
parent
commit
0f324327ca
  1. 2
      src/views/modules/project/projectInfo/projectInfo.vue
  2. 1
      src/views/modules/project/projectPart/searchProjectPart.vue
  3. 2
      src/views/modules/proofing/requestForProofing.vue
  4. 1
      src/views/modules/quotation/requestForQuote.vue
  5. 3
      src/views/modules/quotation/toBeQuoted.vue
  6. 1
      src/views/modules/quote/index.vue
  7. 5
      src/views/modules/sampleManagement/technicalSpecificationList.vue
  8. 2
      src/views/modules/test/requestForTest.vue

2
src/views/modules/project/projectInfo/projectInfo.vue

@ -2012,6 +2012,8 @@
params.no = this.pageIndex
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.toString()
projectInfoSearchByAnyField(params).then(({data})=>{
if (data && data.code === 0){
this.dataList1 = data.page.list

1
src/views/modules/project/projectPart/searchProjectPart.vue

@ -1051,6 +1051,7 @@
params.site = this.$store.state.user.site
params.no = this.pageIndex
params.size = this.pageSize
params.userId = this.$store.state.user.id.toString()
projectPartSearchByAnyField(params).then(({data})=>{
if (data && data.code === 0){
this.dataList1 = data.page.list

2
src/views/modules/proofing/requestForProofing.vue

@ -3812,6 +3812,8 @@ export default {
params.menuId = '103001'
params.no = this.pageIndex
params.size = this.pageSize
params.userId = this.$store.state.user.id.toString()
params.userName = this.$store.state.user.name
proofingInformationSearchAny(params).then(({data})=>{
if (data && data.code === 0){
this.dataList = data.page.list

1
src/views/modules/quotation/requestForQuote.vue

@ -3568,6 +3568,7 @@ export default {
params.menuId = '102001'
params.no = this.pageIndex
params.size = this.pageSize
params.userId = this.$store.state.user.id.toString()
quotationInformationSearchByAnyField(params).then(({data})=>{
if (data && data.code === 0){
this.dataList = data.page.list

3
src/views/modules/quotation/toBeQuoted.vue

@ -660,11 +660,12 @@ export default {
this.quoteVisible = true;
},
searchByAnyField(params){
params.username = this.$store.state.user.name
params.userName = this.$store.state.user.name
params.site = this.$store.state.user.site
params.menuId = '102004'
params.no = this.pageIndex
params.size = this.pageSize
params.userId = this.$store.state.user.id.toString()
quotationInformationSearchByAnyField(params).then(({data})=>{
if (data && data.code === 0){
this.dataList = data.page.list

1
src/views/modules/quote/index.vue

@ -1001,6 +1001,7 @@ export default {
params.site = this.$store.state.user.site
params.no = this.no
params.size = this.size
params.userId = this.$store.state.user.id.toString()
queryQuotePageByAnyField(params).then(({data})=>{
if (data && data.code === 0){
this.dataList = data.page.list

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

@ -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

2
src/views/modules/test/requestForTest.vue

@ -3771,6 +3771,8 @@ export default {
params.menuId = '107001'
params.no = this.pageIndex
params.size = this.pageSize
params.userId = this.$store.state.user.id.toString()
params.userName = this.$store.state.user.name
testInformationSearchAny(params).then(({data})=>{
if (data && data.code === 0){
this.dataList = data.page.list

Loading…
Cancel
Save