Skip to content

Commit

Permalink
更新文档 (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
power721 authored Oct 1, 2024
1 parent 7941c96 commit fe79106
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 9 deletions.
19 changes: 15 additions & 4 deletions doc/README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ AList代理,支持xiaoya版AList界面管理。
- 多个AList站点
- 多个阿里云盘账号
- 挂载我的云盘
- 支持夸克、UC、115网盘
- 自动签到
- 自动刷新阿里Token
- 自定义TvBox配置
Expand Down Expand Up @@ -180,6 +181,13 @@ docker run -d \

![站点数据](https://raw.githubusercontent.com/power721/alist-tvbox/master/doc/atv_site_data.png)

### Emby站点
在Emby页面添加Emby站点url和帐号。

在TvBox选择第五个站源观看。

![Emby站源](https://raw.githubusercontent.com/power721/alist-tvbox/master/doc/atv_emby.jpg)

### 账号
![账号列表](https://raw.githubusercontent.com/power721/alist-tvbox/master/doc/atv_account.png)

Expand All @@ -190,8 +198,15 @@ docker run -d \

![账号详情](https://raw.githubusercontent.com/power721/alist-tvbox/master/doc/atv_account_detail.png)

#### 网盘帐号
网盘帐号在帐号页面添加。

夸克网盘Cookie获取方式: https://alist.nn.ci/zh/guide/drivers/quark.html

UC网盘Cookie获取方式: https://alist.nn.ci/zh/guide/drivers/uc.html

115网盘Cookie获取方式: https://alist.nn.ci/zh/guide/drivers/115.html

网盘分享在资源页面添加。

115网盘开启本地代理后才能使用webdav播放。
Expand Down Expand Up @@ -362,10 +377,6 @@ tvbox/my.json和juhe.json不能在TvBox直接使用,请使用订阅地址!

![filter](https://raw.githubusercontent.com/power721/alist-tvbox/master/doc/atv_filter.jpg)

### Emby
在Emby页面添加Emby站点url和帐号。
在TvBox选择第五个站源观看。

### BiliBili
拖动行可以改变顺序,需要点击保存按钮才能生效。

Expand Down
Binary file added doc/atv_emby.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion web-ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ onMounted(() => {
<el-menu mode="horizontal" :ellipsis="false" :router="true">
<el-menu-item index="/">首页</el-menu-item>
<el-menu-item index="/sites" v-if="account.authenticated">站点</el-menu-item>
<el-menu-item index="/emby" v-if="account.authenticated&&full">Emby</el-menu-item>
<!-- <el-menu-item index="/emby" v-if="account.authenticated&&full">Emby</el-menu-item>-->
<el-menu-item index="/accounts" v-if="account.authenticated&&show">账号</el-menu-item>
<!-- <el-menu-item index="/pikpak" v-if="account.authenticated&&show&&full">PikPak</el-menu-item>-->
<el-menu-item index="/bilibili" v-if="account.authenticated&&full">BiliBili</el-menu-item>
Expand Down
8 changes: 4 additions & 4 deletions web-ui/src/views/EmbyView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
</template>
</el-dialog>

<el-dialog v-model="dialogVisible" title="删除站点" width="30%">
<p>是否删除站点 - {{ form.name }}</p>
<el-dialog v-model="dialogVisible" title="删除Emby站点" width="30%">
<p>是否删除Emby站点 - {{ form.name }}</p>
<p>{{ form.url }}</p>
<template #footer>
<span class="dialog-footer">
Expand Down Expand Up @@ -84,7 +84,7 @@ const form = ref({
})
const handleAdd = () => {
dialogTitle.value = '添加站点'
dialogTitle.value = '添加Emby站点'
updateAction.value = false
form.value = {
id: 0,
Expand All @@ -98,7 +98,7 @@ const handleAdd = () => {
}
const handleEdit = (data: any) => {
dialogTitle.value = '更新站点 - ' + data.name
dialogTitle.value = '更新Emby站点 - ' + data.name
updateAction.value = true
form.value = Object.assign({}, data)
formVisible.value = true
Expand Down
10 changes: 10 additions & 0 deletions web-ui/src/views/SitesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@
</template>
</el-dialog>
</div>

<div class="divider"></div>

<EmbyView></EmbyView>

</template>

<script setup lang="ts">
Expand All @@ -218,6 +223,7 @@ import type {UploadInstance, UploadProps, UploadRawFile} from 'element-plus'
import {ElMessage, genFileId} from "element-plus";
import type {VodList} from "@/model/VodList";
import type {Meta} from "@/model/Meta";
import EmbyView from "@/views/EmbyView.vue";
const upload = ref<UploadInstance>()
const headers = {
Expand Down Expand Up @@ -468,6 +474,10 @@ onMounted(() => {
margin-bottom: 6px;
}
.divider {
margin: 30px 0;
}
.json pre {
height: 600px;
overflow: scroll;
Expand Down

0 comments on commit fe79106

Please sign in to comment.