diff --git a/src/App.vue b/src/App.vue
index ec0d50c..925ab5b 100755
--- a/src/App.vue
+++ b/src/App.vue
@@ -95,4 +95,18 @@ export default {
-webkit-box-shadow: 0 0 .3rem rgba(0, 0, 0, .1);
box-shadow: 0 0 .3rem rgba(0, 0, 0, .1);
}
+
+// 弹窗公共类 蒙版
+.pop-box {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ background-color: rgba(0, 0, 0, 0.64);
+ z-index: 100;
+ align-items: center;
+ justify-content: flex-end;
+ overflow: auto;
+}
diff --git a/src/components/DetailReply.vue b/src/components/DetailReply.vue
new file mode 100755
index 0000000..11180b9
--- /dev/null
+++ b/src/components/DetailReply.vue
@@ -0,0 +1,218 @@
+
+