Compare commits

...

5 Commits

Author SHA1 Message Date
Hunlongyu
aea794bf29 💘 升级到 0.9.1 版本 2020-02-26 22:06:13 +08:00
Hunlongyu
636ef602b1 💝 电视剧下,记录按钮点击后的集数。 2020-02-26 22:04:42 +08:00
Hunlongyu
b75de05f09 💖 修复网页端播放失败bug 2020-02-26 21:57:59 +08:00
Hunlongyu
9a14219418 v0.9.1 优化 2020-02-23 20:32:50 +08:00
Hunlongyu
2a0afa6ce0 移除 诚通网盘 2020-02-22 21:39:57 +08:00
6 changed files with 16 additions and 8 deletions

View File

@@ -24,8 +24,6 @@
[蓝奏云 快速下载通道](https://www.lanzous.com/b04s6a3re) 密码:95px
[诚通网盘 备用下载通道](https://72k.us/dir/12872257-37375957-d3f41d)
### 截图:
主界面 ⬇
![film.png](https://i.loli.net/2020/01/19/U1EPzoJHhTDnuxA.png)

View File

@@ -35,10 +35,11 @@
let info = get('info')
let time = get('time')
let flag = info.indexOf('$')
let url
if (flag > 0) {
let url = info.split('$')[1]
url = info.split('$')[1]
} else {
let url = info
url = info
}
let player = new window.HlsJsPlayer({
id: 'mse',

View File

@@ -1,6 +1,6 @@
{
"name": "zy",
"version": "0.9.0",
"version": "0.9.1",
"author": "Hunlongyu",
"description": "ZY Player 资源播放器",
"private": true,

View File

@@ -48,6 +48,9 @@
.el-link, .card{
color: var(--l-c);
}
.qrcode img{
box-shadow: 0px 0px 5px var(--l-icon);
}
}
}
.detail{

View File

@@ -215,6 +215,12 @@ export default Vue.extend({
this.video.index = j
// @ts-ignore
this.xg.src = url
video.find({ detail: this.video.detail }).then(res => {
if (res) {
this.video.index = j
video.update(res.id, this.video)
}
})
}
}
}

View File

@@ -45,13 +45,13 @@
<el-row class="title"><i class="el-icon-view"></i><span>关于</span></el-row>
<el-row class="info">
<ul>
<li><el-link :underline="false" @click="linkOpen('http://zy.hly120506.top')">官网: ZY Player</el-link></li>
<li><el-link :underline="false" @click="linkOpen('https://github.com/Hunlongyu/ZY-Player')">官网: ZY Player</el-link></li>
<li><el-link :underline="false" @click="linkOpen('https://github.com/Hunlongyu/ZY-Player/issues')">反馈: Issues</el-link></li>
</ul>
</el-row>
</el-row>
<el-row class="item opacity">
<el-row class="title"><i class="el-icon-coffee"></i><span>请喝一杯咖啡</span></el-row>
<el-row class="title"><i class="el-icon-coffee"></i><span>喝一杯咖啡</span></el-row>
<el-row class="qrcode">
<img src="@/assets/image/alipay.png" alt="">
<img src="@/assets/image/wepay.jpg" alt="">
@@ -75,7 +75,7 @@ export default Vue.extend({
return {
sites: sites,
dbSite: 0,
opacity: 98,
opacity: 100,
download: false
}
},