修复BUG

This commit is contained in:
杜恒
2021-04-22 08:52:00 +08:00
parent 6af7d8f87c
commit 37c5a38930
8 changed files with 25 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2899,12 +2899,16 @@
line-height: 20px;
color: var(--main);
.author {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-right: 10px;
a {
color: #409eff;
}
}
.owner {
flex-shrink: 0;
background: var(--theme);
color: #fff;
padding: 0 5px;

View File

@@ -1,4 +1,7 @@
document.addEventListener('DOMContentLoaded', () => {
$('.joe_detail__article p:empty').remove();
class JoeMtitle extends HTMLElement {
constructor() {
super();
@@ -52,9 +55,9 @@ document.addEventListener('DOMContentLoaded', () => {
}
render() {
if (!this.options.url) return (this.innerHTML = '音频地址未填写!');
this.innerHTML = '<div></div>';
this.innerHTML = '<span style="display: block"></span>';
new APlayer({
container: this.querySelector('div'),
container: this.querySelector('span'),
theme: this.options.theme,
autoplay: this.options.autoplay,
audio: [
@@ -80,11 +83,11 @@ document.addEventListener('DOMContentLoaded', () => {
}
render() {
if (!this.options.id) return (this.innerHTML = '网易云歌曲ID未填写');
this.innerHTML = '<div></div>';
this.innerHTML = '<span style="display: block"></span>';
fetch('https://api.i-meto.com/meting/api?server=netease&type=song&id=' + this.options.id).then(async response => {
const audio = await response.json();
new APlayer({
container: this.querySelector('div'),
container: this.querySelector('span'),
lrcType: 3,
theme: this.options.color,
autoplay: this.options.autoplay,
@@ -106,11 +109,11 @@ document.addEventListener('DOMContentLoaded', () => {
}
render() {
if (!this.options.id) return (this.innerHTML = '网易云歌单ID未填写');
this.innerHTML = '<div></div>';
this.innerHTML = '<span style="display: block"></span>';
fetch('https://api.i-meto.com/meting/api?server=netease&type=playlist&id=' + this.options.id).then(async response => {
const audio = await response.json();
new APlayer({
container: this.querySelector('div'),
container: this.querySelector('span'),
lrcType: 3,
theme: this.options.color,
autoplay: this.options.autoplay,
@@ -269,7 +272,7 @@ document.addEventListener('DOMContentLoaded', () => {
}
window.customElements.define('joe-callout', JoeCallout);
$('.joe_detail__article p:empty').remove();
/*
------------------------以下未测试------------------------------------------

File diff suppressed because one or more lines are too long