|
|
@ -35,7 +35,6 @@ |
|
|
|
|
|
|
|
import comBlankView from '@/mycomponents/common/comBlankView.vue' |
|
|
|
import jobDetailPopup from '@/mycomponents/job/jobDetailPopup.vue' |
|
|
|
import comScanIssuePack from '@/pages/issue/coms/comScanIssuePack.vue' |
|
|
|
import comIssueRequestCreator from '@/pages/issue/coms/comIssueRequestCreator.vue' |
|
|
|
import winScanPackLevel from '@/mycomponents/scan/winScanPackLevel.vue' |
|
|
|
|
|
|
@ -44,7 +43,6 @@ |
|
|
|
components: { |
|
|
|
comBlankView, |
|
|
|
jobDetailPopup, |
|
|
|
comScanIssuePack, |
|
|
|
comIssueRequestCreator, |
|
|
|
winScanPackLevel |
|
|
|
}, |
|
|
@ -86,12 +84,6 @@ |
|
|
|
methods: { |
|
|
|
goScan() { |
|
|
|
this.$refs.scanPopup.openScanPopup(); |
|
|
|
setTimeout(res => { |
|
|
|
if (this.$refs.scanPopup != undefined) { |
|
|
|
this.$refs.scanPopup.getfocus(); |
|
|
|
} |
|
|
|
}, 400) |
|
|
|
|
|
|
|
}, |
|
|
|
getScanResult(result){ |
|
|
|
this.detailSource = { |
|
|
@ -143,7 +135,9 @@ |
|
|
|
showCommitSuccessMessage(hint) { |
|
|
|
this.$refs.comMessage.showSuccessMessage(hint, res => { |
|
|
|
this.closeScanPopup(); |
|
|
|
this.goScan(); |
|
|
|
setTimeout(end=>{ |
|
|
|
this.goScan(); |
|
|
|
},500) |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|