diff --git a/src/components/Dialog/DialogDeleteConfirmation.vue b/src/components/Dialog/DialogDeleteConfirmation.vue index 08e0b915..9925262d 100644 --- a/src/components/Dialog/DialogDeleteConfirmation.vue +++ b/src/components/Dialog/DialogDeleteConfirmation.vue @@ -9,6 +9,28 @@
Are you sure you want delete this {{ type }}? +
+
+ Estimated Transaction Weight + + + Total fee paid in DBIO to execute this transaction. + +
+ + {{ Number(fee).toFixed(4) }} DBIO + +
@@ -38,7 +60,8 @@ export default { props: { show: Boolean, - type: String + type: String, + fee: { type: [String, Number]} }, methods: { diff --git a/src/views/Dashboard/Lab/OrderHistory/ProcessOrder/ProcessSpecimen/index.vue b/src/views/Dashboard/Lab/OrderHistory/ProcessOrder/ProcessSpecimen/index.vue index d36a4e16..b924c112 100644 --- a/src/views/Dashboard/Lab/OrderHistory/ProcessOrder/ProcessSpecimen/index.vue +++ b/src/views/Dashboard/Lab/OrderHistory/ProcessOrder/ProcessSpecimen/index.vue @@ -1,7 +1,29 @@