You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.0 KiB

<template>
<view class="jnpf-barcode">
<template v-if="barcode">
<tki-barcode ref="barcode" :format="format" :cid="cid" :val="barcode" :opations="opations" :key="key" />
</template>
</view>
</template>
<script>
import tkiBarcode from "./tki-barcode/tki-barcode.vue"
let unique = 0
export default {
props: {
dataType: {
type: String,
default: 'static'
},
format: {
type: String,
default: 'code128'
},
lineColor: {
type: String,
default: '#000'
},
background: {
type: String,
default: '#fff'
},
relationField: {
type: String,
default: ''
},
formData: {
type: Object
},
width: {
type: Number,
default: 4
},
height: {
type: Number,
default: 40
},
staticText: {
type: String,
default: ''
}
},
components: {
tkiBarcode
},
computed: {
barcode() {
if (this.dataType === 'static') {
return this.staticText
} else {
return this.relationText.toString()
}
},
opations() {
return {
format: this.format,
width: this.width,
height: this.height,
displayValue: false,
lineColor: this.lineColor,
background: this.background
}
}
},
data() {
return {
cid: '',
relationText: "",
key: +new Date()
}
},
created() {
this.cid = this.uuid()
uni.$on('upDateCode', () => {
setTimeout(() => {
this.$refs.barcode._makeCode()
this.key = +new Date()
}, 200);
})
},
watch: {
formData: {
handler: function(val) {
if (val && this.dataType === 'relation' && this.relationField) {
this.relationText = val[this.relationField]
}
},
deep: true,
immediate: true
},
},
methods: {
uuid() {
const time = Date.now()
const random = Math.floor(Math.random() * 1000000000)
unique++
return 'barcode_' + random + unique + String(time)
}
},
}
</script>
<style lang="scss" scoped>
.jnpf-barcode {
width: 100%;
overflow: hidden;
margin-bottom: -20rpx;
}
</style>