分享详情页修改
This commit is contained in:
parent
a494c0ed16
commit
b844f82c50
@ -23,7 +23,7 @@ export default ({ instance }: Props) => {
|
|||||||
let mtBox = document.getElementsByClassName('flex-1 mt-14 flex flex-col overflow-hidden')[0]
|
let mtBox = document.getElementsByClassName('flex-1 mt-14 flex flex-col overflow-hidden')[0]
|
||||||
if (!chatShow.get()) {
|
if (!chatShow.get()) {
|
||||||
infoHeader.style.display = "flex";
|
infoHeader.style.display = "flex";
|
||||||
infoSend.style.display = "flex";
|
infoSend.style.display = "block";
|
||||||
mtBox.style.marginTop = '3.5rem';
|
mtBox.style.marginTop = '3.5rem';
|
||||||
}
|
}
|
||||||
currentConversationId.set(instance.id)
|
currentConversationId.set(instance.id)
|
||||||
|
@ -164,14 +164,18 @@ export default () => {
|
|||||||
let mtBox = document.getElementsByClassName('flex-1 mt-14 flex flex-col overflow-hidden')[0]
|
let mtBox = document.getElementsByClassName('flex-1 mt-14 flex flex-col overflow-hidden')[0]
|
||||||
if (chatShow.get()) {
|
if (chatShow.get()) {
|
||||||
infoSend.style.display = "none";
|
infoSend.style.display = "none";
|
||||||
|
if (!isMobile()) {
|
||||||
infoHeader.style.display = "none";
|
infoHeader.style.display = "none";
|
||||||
mtBox.style.marginTop = 0;
|
mtBox.style.marginTop = 0;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
infoHeader.style.display = "flex";
|
|
||||||
infoSend.style.display = "flex";
|
infoSend.style.display = "flex";
|
||||||
|
if (!isMobile()) {
|
||||||
|
infoHeader.style.display = "flex";
|
||||||
mtBox.style.marginTop = '3.5rem';
|
mtBox.style.marginTop = '3.5rem';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//提示弹窗
|
//提示弹窗
|
||||||
// const ErrorState = () => (
|
// const ErrorState = () => (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user