Browse Source

2024-07-16

功能优化
java8
fengyuan_yang 2 years ago
parent
commit
0f26ba8993
  1. 4
      src/views/modules/qc/FAIResultEntry.vue
  2. 4
      src/views/modules/qc/FQCResultEntry.vue
  3. 4
      src/views/modules/qc/IPQCResultEntry.vue

4
src/views/modules/qc/FAIResultEntry.vue

@ -2698,10 +2698,12 @@
//
rollNoEnter () {
const regex = /\(08\)(.*)/
const result = this.modalData.rollNo.match(regex)
let tempData = {
site: '',
bu: this.modalData.bu,
rollNo: this.modalData.rollNo
rollNo: result[1]
}
rollNoEnter(tempData).then(({data}) => {
if (data && data.code === 0) {

4
src/views/modules/qc/FQCResultEntry.vue

@ -2673,10 +2673,12 @@
//
rollNoEnter () {
const regex = /\(08\)(.*)/
const result = this.modalData.rollNo.match(regex)
let tempData = {
site: '',
bu: this.modalData.bu,
rollNo: this.modalData.rollNo
rollNo: result[1]
}
rollNoEnter(tempData).then(({data}) => {
if (data && data.code === 0) {

4
src/views/modules/qc/IPQCResultEntry.vue

@ -2733,10 +2733,12 @@
//
rollNoEnter () {
const regex = /\(08\)(.*)/
const result = this.modalData.rollNo.match(regex)
let tempData = {
site: '',
bu: this.modalData.bu,
rollNo: this.modalData.rollNo
rollNo: result[1]
}
rollNoEnter(tempData).then(({data}) => {
if (data && data.code === 0) {

Loading…
Cancel
Save