Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rontend into develop
  • Loading branch information
jian-guo-s committed Oct 31, 2023
2 parents 2a52efb + 2a4c96e commit c57aff2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/views/projects/projectDashboardExplorer/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="bg-[#FFFFFF] dark:bg-[#1D1C1A] rounded-[12px] p-[32px] mt-[32px]">
<div class="text-[24px] font-bold mb-[32px]">Contract Explorer</div>

<ContractList v-if="frameType && abiInfo.length" :abiInfo="abiInfo" :contractAddress="contractAddress" :frameType="contractInfo.frameType"
<ContractList v-if="frameType && abiInfo.length" :abiInfo="abiInfo" :contractAddress="baseInfo.address" :frameType="contractInfo.frameType"
@checkContract="checkContract" :canisterId="canisterId">
</ContractList>
</div>
Expand All @@ -27,7 +27,6 @@ const breadCrumbInfo = ref<any>([]);
const route = useRoute()
const contractName = ref('');
const frameType = ref(1);
const contractAddress = ref('');
const abiInfo = ref('');
// 罐应用那边合约调用需要的数据
const canisterId = ref('')
Expand Down Expand Up @@ -97,4 +96,4 @@ onBeforeMount(async () => {
})
</script>

<style lang="less" scoped></style>
<style lang="less" scoped></style>

0 comments on commit c57aff2

Please sign in to comment.