Commit aed5b4c4 by Sixong.Zhu

u

parent 52f485d6
Showing with 27 additions and 16 deletions
...@@ -132,22 +132,29 @@ ...@@ -132,22 +132,29 @@
} }
mounted() { mounted() {
if ( this.adjust();
localStorage.getItem(chatResizeKey1) && }
localStorage.getItem(chatResizeKey2)
) { private adjust() {
const s1 = localStorage.getItem(chatResizeKey1) + "px"; setTimeout(() => {
const s2 = localStorage.getItem(chatResizeKey2) + "px"; if (
this.refResize && (this.refResize.style.top = s1); localStorage.getItem(chatResizeKey1) &&
this.refTop && (this.refTop.style.height = s1); localStorage.getItem(chatResizeKey2) &&
this.refBottom && (this.refBottom.style.height = s2); this.hasInput
} else { ) {
this.refBottom && const s1 = localStorage.getItem(chatResizeKey1) + "px";
((this.refBottom as HTMLElement).style.height = const s2 = localStorage.getItem(chatResizeKey2) + "px";
this.chatBox.clientHeight - this.refTop && (this.refTop.style.height = s1);
this.refTop.clientHeight + this.refResize && (this.refResize.style.top = s1);
"px"); this.refBottom && (this.refBottom.style.height = s2);
} } else {
this.refBottom &&
((this.refBottom as HTMLElement).style.height =
this.chatBox.clientHeight -
this.refTop.clientHeight +
"px");
}
}, 800);
} }
private openMessage(o: any) { private openMessage(o: any) {
...@@ -242,6 +249,10 @@ ...@@ -242,6 +249,10 @@
top: calc(100% - 130px + 1px); top: calc(100% - 130px + 1px);
height: 6px; height: 6px;
width: 100%; width: 100%;
&:hover {
background-color: #eee;
}
} }
} }
.order-info-con { .order-info-con {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment