|
@@ -10,6 +10,10 @@ const props = defineProps({
|
|
|
EdbInfoId:{
|
|
|
type:Number,
|
|
|
default:0
|
|
|
+ },
|
|
|
+ UniqueCode: {
|
|
|
+ type:Number,
|
|
|
+ default: ''
|
|
|
}
|
|
|
})
|
|
|
|
|
@@ -22,7 +26,7 @@ watch(()=>props.show,()=>{
|
|
|
const edbSourceData = ref([])
|
|
|
async function getEdbInfo(){
|
|
|
const res = await apiChart.getEdbCreateHistory({
|
|
|
- EdbInfoId:props.EdbInfoId
|
|
|
+ UniqueCode:props.UniqueCode
|
|
|
})
|
|
|
if(res.Ret!==200) return
|
|
|
edbSourceData.value = flatTreeData([res.Data]||[]).reverse()
|