Compare commits
No commits in common. "602dca6ee67ca1f0ea1a287910c6261ecf5726a6" and "59951fa1357f9deb89d09a28a35334a7c5d86b1f" have entirely different histories.
602dca6ee6
...
59951fa135
@ -54,7 +54,7 @@ const getPressReleasesInfo = () => {
|
||||
if (res.status === 200) {
|
||||
if (res.data.status === 0) {
|
||||
const myRichText = document.getElementById("my-richText");
|
||||
myRichText.innerHTML = res?.data?.data?.data?.content || "";
|
||||
myRichText.innerHTML = res?.data?.data?.content || "";
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -55,8 +55,7 @@ const getPressReleasesInfo = () => {
|
||||
if (res.status === 200) {
|
||||
if (res.data.status === 0) {
|
||||
const myRichText = document.getElementById("my-richText");
|
||||
console.log(res?.data?.data?.data?.content,res);
|
||||
myRichText.innerHTML = res?.data?.data?.data?.content || "";
|
||||
myRichText.innerHTML = res?.data?.data?.content || "";
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -41,7 +41,7 @@ const getPressReleasesInfo = () => {
|
||||
if (res.status === 200) {
|
||||
if (res.data.status === 0) {
|
||||
const myRichText = document.getElementById('my-richText')
|
||||
myRichText.innerHTML = res?.data?.data?.data?.content || "";
|
||||
myRichText.innerHTML = res?.data?.data?.content || "";
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@ -43,7 +43,7 @@ const getPressReleasesInfo = () => {
|
||||
if (res.status === 200) {
|
||||
if (res.data.status === 0) {
|
||||
const myRichText = document.getElementById('my-richText')
|
||||
myRichText.innerHTML = res?.data?.data?.data?.content || "";
|
||||
myRichText.innerHTML = res?.data?.data?.content || "";
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user