Browse Source

2026-06-23

chooseList 客户按照编码排序
master
fengyuan_yang 18 hours ago
parent
commit
81c7be2f2c
  1. 1
      src/views/modules/lab/labRecord.vue
  2. 1
      src/views/modules/proofing/requestForProofing.vue
  3. 1
      src/views/modules/quotation/requestForQuote.vue
  4. 1
      src/views/modules/quote/index.vue
  5. 1
      src/views/modules/rohs/rohsRecord.vue
  6. 4
      src/views/modules/sampleManagement/com_technical-add-or-update.vue
  7. 4
      src/views/modules/sampleManagement/technicalSpecificationList.vue
  8. 1
      src/views/modules/test/requestForTest.vue

1
src/views/modules/lab/labRecord.vue

@ -2365,6 +2365,7 @@ export default {
if (val === 102) {
if (type === 1) {
strVal = this.modalData.customerId
conSql = " order by Customer_no "
}
}
if (val === 103) {

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

@ -3569,6 +3569,7 @@ export default {
if (val === 102) {
if (type === 1) {
strVal = this.modalData.customerNo
conSql = " order by Customer_no "
}
}
// if (val === 103) {

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

@ -3305,6 +3305,7 @@ export default {
if (val === 102) {
if (type === 1) {
strVal = this.modalData.customerNo
conSql = " order by Customer_no "
}
}
if (val === 103) {

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

@ -1249,6 +1249,7 @@ export default {
let conSql = ''
if (val === 102) {
strVal = this.saveQuote.customerNo
conSql = " order by Customer_no "
}
if (val === 104) {
strVal = this.saveQuote.projectNo

1
src/views/modules/rohs/rohsRecord.vue

@ -3078,6 +3078,7 @@ export default {
if (val === 102) {
if (type === 1) {
strVal = this.modalData.endCustomer
conSql = " order by Customer_no "
}
}
if (val === 103 || val === 2001 || val === 2054) {

4
src/views/modules/sampleManagement/com_technical-add-or-update.vue

@ -705,6 +705,7 @@
this.tagNo1 = type
this.$nextTick(() => {
let strVal = ''
let conSql = ''
if (val === 134) {
if(type==1) {
if(this.dataForm.id!=0){
@ -723,6 +724,7 @@
if(type==3) {
strVal = this.proofingSearch.finalCustomerId
}
conSql = " order by Customer_no "
}
if (val === 104) {
if(type==2) {
@ -744,7 +746,7 @@
strVal = this.dataForm.priority
}
}
this.$refs.baseList.init(val, strVal)
this.$refs.baseList.init(val, strVal, conSql)
})
},
/* 列表方法的回调 */

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

@ -1304,6 +1304,7 @@
this.tagNo1 = type
this.$nextTick(() => {
let strVal = ''
let conSql = ''
if (val === 1013) {
if(type==1) {
strVal = this.dataForm.partType
@ -1318,8 +1319,9 @@
if(type==1) {
strVal = this.searchData.customerDesc
}
conSql = " order by Customer_no "
}
this.$refs.baseList.init(val, strVal)
this.$refs.baseList.init(val, strVal, conSql)
})
},

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

@ -3508,6 +3508,7 @@ export default {
if (type === 1) {
strVal = this.modalData.customerNo
}
conSql = " order by Customer_no "
}
// if (val === 103) {
// if(type === 1) {

Loading…
Cancel
Save