20240205
luoJunYong.123 3 years ago
parent 689a3f0fd4
commit da8bebcf5e
  1. 1
      src/components/checkPhoto/index.vue
  2. 14
      src/pages/counter/list/index.vue

@ -4,6 +4,7 @@
<h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 95px;top: 110px;">{{ dataFlow.userName }}</h3> <h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 95px;top: 110px;">{{ dataFlow.userName }}</h3>
<h3 class="subpixel-antialiased text-2xl text-center absolute" v-if="dataFlow.sex==1" style="left: 446px;top: 110px;"></h3> <h3 class="subpixel-antialiased text-2xl text-center absolute" v-if="dataFlow.sex==1" style="left: 446px;top: 110px;"></h3>
<h3 class="subpixel-antialiased text-2xl text-center absolute" v-else style="left: 474px;top: 110px;"></h3> <h3 class="subpixel-antialiased text-2xl text-center absolute" v-else style="left: 474px;top: 110px;"></h3>
<h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 480px;top: 110px;">{{ dataFlow.birthday.split('-').join(' ') }}</h3>
<h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 96px;top: 135px;"></h3> <h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 96px;top: 135px;"></h3>
<h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 96px;top: 135px;"></h3> <h3 class="subpixel-antialiased text-2xl text-center absolute" style="left: 96px;top: 135px;"></h3>
<h3 class="subpixel-antialiased text-xl text-center absolute" style="left: 96px;top: 165px;">{{ dataFlow.idNumber }}</h3> <h3 class="subpixel-antialiased text-xl text-center absolute" style="left: 96px;top: 165px;">{{ dataFlow.idNumber }}</h3>

@ -819,7 +819,14 @@ export default {
439: '销户章' 439: '销户章'
} }
return (id) => { return (id) => {
return this.sealArr.filter(item => item.name.includes(stampMap2[id])) // finishSealedArr
return this.sealArr.filter(item => {
// && this.finishSealedArr.includes(item.id)
if(item.name.includes(stampMap2[id])) {
console.log(item.id)
return item
}
})
} }
}, },
// sealChecked // sealChecked
@ -1212,7 +1219,7 @@ export default {
getOperation({ getOperation({
parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,9' parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,9'
}).then((data)=>{ }).then((data)=>{
if(data.status == 200) { if(data.status == 200 && data.data.judgmentRuleReqs) {
this.finishGoods.checkMoneyMechine = true this.finishGoods.checkMoneyMechine = true
} }
}) })
@ -1221,7 +1228,8 @@ export default {
getOperation({ getOperation({
parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,10' parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,10'
}).then((data)=>{ }).then((data)=>{
if(data.status == 200) { if(data.status == 200 && data.data.judgmentRuleReqs) {
console.log(data)
this.finishGoods.printMechine = true this.finishGoods.printMechine = true
} }
}) })

Loading…
Cancel
Save