diff --git a/Client/src/App.vue b/Client/src/App.vue index 9bfd62b..d6591a7 100644 --- a/Client/src/App.vue +++ b/Client/src/App.vue @@ -176,7 +176,7 @@ export default { this.baseMenu = this.caMenu; } if(to.fullPath === "/") this.$router.push({name: "splash"}); - if (to.name === 'newPeer' || to.name === 'joinChannel' || to.name === 'chaincode') this.updateMenuAndTab(MENU_TYPES.PEER); + if (to.name === 'newPeer' || to.name === 'joinChannel' || to.name === 'chaincode' || to.name === 'peerOperations') this.updateMenuAndTab(MENU_TYPES.PEER); if (to.name === 'caInput' && this.showTopBarItems) this.updateMenuAndTab(MENU_TYPES.CA); } }, diff --git a/Client/src/components/JoinChannelDialog.vue b/Client/src/components/JoinChannelDialog.vue new file mode 100644 index 0000000..eb235b3 --- /dev/null +++ b/Client/src/components/JoinChannelDialog.vue @@ -0,0 +1,89 @@ + + + + + \ No newline at end of file diff --git a/Client/src/components/NewPeerDialog.vue b/Client/src/components/NewPeerDialog.vue new file mode 100644 index 0000000..2e65731 --- /dev/null +++ b/Client/src/components/NewPeerDialog.vue @@ -0,0 +1,104 @@ + + + + + \ No newline at end of file diff --git a/Client/src/components/PeerOperations.vue b/Client/src/components/PeerOperations.vue index 470130d..8604a53 100644 --- a/Client/src/components/PeerOperations.vue +++ b/Client/src/components/PeerOperations.vue @@ -1,69 +1,195 @@