mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-08-28 11:37:29 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d18f42cd6f | ||
|
|
9372e98459 | ||
|
|
9400f4660d | ||
|
|
f0d66b8fba | ||
|
|
78abe72815 | ||
|
|
1ce75916ef | ||
|
|
46959d4baa | ||
|
|
b24cc44493 | ||
|
|
46f6c29e1d | ||
|
|
5ad75b8420 |
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "moviepilot",
|
"name": "moviepilot",
|
||||||
"version": "1.3.6-1",
|
"version": "1.3.7-1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"bin": "dist/service.js",
|
"bin": "dist/service.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
@@ -625,6 +625,9 @@ export interface MetaInfo {
|
|||||||
// 原字符串
|
// 原字符串
|
||||||
org_string?: string
|
org_string?: string
|
||||||
|
|
||||||
|
// 原标题(未经识别词转换)
|
||||||
|
title?: string
|
||||||
|
|
||||||
// 副标题
|
// 副标题
|
||||||
subtitle?: string
|
subtitle?: string
|
||||||
|
|
||||||
@@ -726,6 +729,9 @@ export interface MetaInfo {
|
|||||||
|
|
||||||
// 资源类型+特效
|
// 资源类型+特效
|
||||||
edition: string
|
edition: string
|
||||||
|
|
||||||
|
// 应用的自定义识别词
|
||||||
|
apply_words: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
// 上下文信息
|
// 上下文信息
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ function getPercentage() {
|
|||||||
|
|
||||||
// 速度
|
// 速度
|
||||||
function getSpeedText() {
|
function getSpeedText() {
|
||||||
return `↑ ${props.info?.upspeed}/s ↓ ${props.info?.dlspeed}/s`
|
return `↑ ${props.info?.upspeed}/s ↓ ${props.info?.dlspeed}/s ${props.info?.left_time}`
|
||||||
}
|
}
|
||||||
|
|
||||||
// 下载状态
|
// 下载状态
|
||||||
|
|||||||
@@ -143,5 +143,33 @@ function openTmdbPage(type: string, tmdbId: number) {
|
|||||||
识别失败,无法识别到有效信息!
|
识别失败,无法识别到有效信息!
|
||||||
</VAlert>
|
</VAlert>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
<VExpansionPanels
|
||||||
|
v-show="context?.meta_info?.title !== context?.meta_info.org_string"
|
||||||
|
>
|
||||||
|
<VExpansionPanel>
|
||||||
|
<VExpansionPanelTitle>
|
||||||
|
识别词应用详情
|
||||||
|
</VExpansionPanelTitle>
|
||||||
|
<VExpansionPanelText>
|
||||||
|
<VChip
|
||||||
|
variant="elevated"
|
||||||
|
class="me-1 mb-1 break-all"
|
||||||
|
color="primary"
|
||||||
|
>
|
||||||
|
{{ context?.meta_info.org_string }}
|
||||||
|
</VChip>
|
||||||
|
<VChip
|
||||||
|
v-for="(val, key) in context?.meta_info.apply_words"
|
||||||
|
:key="key"
|
||||||
|
:val="val"
|
||||||
|
variant="outlined"
|
||||||
|
color="info"
|
||||||
|
class="me-1 mb-1 break-all"
|
||||||
|
>
|
||||||
|
{{ val }}
|
||||||
|
</VChip>
|
||||||
|
</VExpansionPanelText>
|
||||||
|
</VExpansionPanel>
|
||||||
|
</VExpansionPanels>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
+1
-1
@@ -33,7 +33,7 @@ const isImageLoaded = ref(false)
|
|||||||
// 获取背景图片
|
// 获取背景图片
|
||||||
async function fetchBackgroundImage() {
|
async function fetchBackgroundImage() {
|
||||||
api
|
api
|
||||||
.get('/login/tmdb')
|
.get('/login/wallpaper')
|
||||||
.then((response: any) => {
|
.then((response: any) => {
|
||||||
backgroundImageUrl.value = response.message
|
backgroundImageUrl.value = response.message
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user