diff --git a/src/pages/01_branch-management/MainPage.vue b/src/pages/01_branch-management/MainPage.vue
index cd36e906..fc8b9ff3 100644
--- a/src/pages/01_branch-management/MainPage.vue
+++ b/src/pages/01_branch-management/MainPage.vue
@@ -162,7 +162,94 @@ function clearData() {
{{ node.name }}
-
+
+
+
+
+
+
+ {{ $t('viewDetail') }}
+
+
+
+
+
+ {{ $t('edit') }}
+
+
+
+
+
+ {{ $t('delete') }}
+
+
+
+
+
+
+ {
+ const res = await branchStore.editById(
+ node.id,
+ {
+ status:
+ node.status !== 'INACTIVE'
+ ? 'INACTIVE'
+ : 'ACTIVE',
+ },
+ );
+ if (res) node.status = res.status;
+ }
+ "
+ :model-value="
+ node.status === 'CREATED' ||
+ node.status === 'ACTIVE'
+ "
+ />
+
+
+
+
+
+