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.
 
 
 
 
 
 

46 lines
745 B

<template>
<view class="">
<!-- <winHint :title=title></winHint> -->
<winHint :title="title" :detailList="detailList"></winHint>
</view>
</template>
<script>
import winHint from "../wincom/basicCom/winHint.vue";
components: {
winHint,
},
export default {
watch: {
dataList :{
handler(newName,oldName){
console.log(newName);
this.detailList =dataList;
}
},
immediate:true
},
props: {
title: {
type: String,
default: ""
},
dataList: {
type: Object,
default: {}
},
},
methods: {
openScanPopup() {
this.$refs.popup.open('center')
},
closeScanPopup() {
this.$refs.popup.close()
},
}
}
</script>
<style>
</style>