|
@ -4,7 +4,7 @@
|
|
|
<div class="left-back">
|
|
|
<van-icon name="arrow-left" @click="clickBack" size="14px"></van-icon>
|
|
|
</div>
|
|
|
<div class="currentIndex" v-if="currentCode">{{ currentLabel }} {{ currentCode }}</div>
|
|
|
<div class="currentIndex">{{ currentLabel }} {{ currentCode }}</div>
|
|
|
</div>
|
|
|
<div class="container">
|
|
|
<div class="qrcode">
|
|
@ -12,8 +12,8 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="footerBtn">
|
|
|
<div class="current" v-if="currentCode">当前号码:{{ info.layerNo }}层{{ info.wayerNo }}号位({{ currentIndex }}/{{ info.len }})</div>
|
|
|
<div class="nextBtn" @click="saveCode" v-if="currentCode">{{ currentIndex == info.len ? '完成' : '录入下一个追溯码' }}</div>
|
|
|
<div class="current">当前号码:{{ info.layerNo }}层{{ info.wayerNo }}号位({{ currentIndex + 1 > info.len ? info.len : currentIndex + 1 }}/{{ info.len }})</div>
|
|
|
<div class="nextBtn" @click="saveCode">{{ currentIndex + 1 == info.len ? '完成' : '录入下一个追溯码' }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@ -53,7 +53,6 @@ export default {
|
|
|
handleScanSuccess(code) {
|
|
|
this.currentCode = code
|
|
|
this.info.codeList[this.currentIndex].code = code
|
|
|
this.currentIndex++
|
|
|
this.$EventBus.$emit('getScanData', this.info)
|
|
|
this.stop() // 扫描成功停止扫描
|
|
|
this.$toast('扫描成功,请点击录入下一个')
|
|
@ -63,8 +62,10 @@ export default {
|
|
|
this.$toast(err?.message || '扫码失败')
|
|
|
},
|
|
|
async saveCode() {
|
|
|
// this.currentCode = null
|
|
|
// console.log(this.currentIndex, this.info.len)
|
|
|
this.currentIndex++
|
|
|
this.currentCode = null
|
|
|
console.log(this.currentIndex, this.info.len)
|
|
|
|
|
|
if (this.currentIndex == this.info.len) {
|
|
|
this.$toast('已完成所有扫描')
|
|
@ -127,7 +128,7 @@ export default {
|
|
|
computed: {
|
|
|
currentLabel() {
|
|
|
const len = this.info.len
|
|
|
const index = this.currentIndex
|
|
|
const index = this.currentIndex
|
|
|
|
|
|
if (index == 0) {
|
|
|
return `${len - index}位最里:`
|