Browse Source

props绑定v-model bug

wms3.0_pda
zhang_li 10 months ago
parent
commit
db52dab7d0
  1. 16
      mycomponents/job/jobFilter.vue

16
mycomponents/job/jobFilter.vue

@ -47,11 +47,7 @@
winScanJobNumber,
winScanAsnNumber
},
data() {
return {
dataContent: {},
}
},
props: {
checkedToday: {
type: Boolean,
@ -70,10 +66,18 @@
default: false
}
},
data() {
return {
dataContent: {},
checkedToday:'',
checkedWaitTask:'',
}
},
watch: {
},
mounted() {
this.checkedToday = this.checkedToday
this.checkedWaitTask = this.checkedWaitTask
},
methods: {
//

Loading…
Cancel
Save