1
0
Fork 0
mirror of https://github.com/silenty4ng/k5web synced 2025-04-19 00:29:49 +00:00
This commit is contained in:
Silent YANG 2024-02-02 00:37:47 +08:00
parent 073911ed65
commit c19de93110
13 changed files with 854 additions and 7 deletions

View file

@ -167,7 +167,8 @@
"uart": "official",
"charset": "official",
"K": false,
"H": false
"H": false,
"localmdc": false
}
Object.keys(configuration_list).some(e=>{

View file

@ -1,5 +1,6 @@
{
"name": "LoseHu Patch LTSBD8DFN",
"uart": "official",
"charset": "official"
"charset": "official",
"localmdc": true
}

View file

@ -2,5 +2,6 @@
"name": "LoseHu Patch LTSBD8DFN扩容版",
"uart": "losehu",
"charset": "losehu",
"K": true
"K": true,
"localmdc": true
}

View file

@ -31,6 +31,16 @@ const DASHBOARD: AppRouteRecordRaw = {
requiresAuth: true,
roles: ['*'],
},
},
{
path: 'settings',
name: 'Settings',
component: () => import('@/views/list/settings/index.vue'),
meta: {
locale: '设置管理',
requiresAuth: true,
roles: ['*'],
},
}
],
};

View file

@ -1,7 +1,7 @@
<template>
<div class="container">
<Breadcrumb :items="['写频', '信道管理']" />
<a-card class="general-card" :title="$t('信道管理')">
<a-card class="general-card" title="信道管理">
<a-row style="margin-bottom: 16px">
<a-col :span="12">
<a-space>
@ -128,7 +128,6 @@
<script lang="ts" setup>
import { computed, ref, reactive } from 'vue';
import { useI18n } from 'vue-i18n';
import useLoading from '@/hooks/loading';
import type { TableColumnData } from '@arco-design/web-vue/es/table/interface';
import { eeprom_read, uint8ArrayToHexReverseString, uint8ArrayToString, hexReverseStringToUint8Array, stringToUint8Array, eeprom_write, eeprom_reboot, eeprom_init } from '@/utils/serial.js';
@ -136,7 +135,6 @@
const appStore = useAppStore();
const { loading, setLoading } = useLoading(false);
const { t } = useI18n();
const state: {
bandwidthOption: any[],
stepOption: any[],
@ -191,7 +189,7 @@
const columns = computed<TableColumnData[]>(() => [
{
title: t('searchTable.columns.index'),
title: '#',
dataIndex: 'index',
slotName: 'index',
width: 70

View file

@ -0,0 +1,204 @@
<template>
<div class="card-wrap">
<a-card v-if="loading" :bordered="false" hoverable>
<slot name="skeleton"></slot>
</a-card>
<a-card v-else :bordered="false" hoverable>
<a-space align="start">
<a-avatar
v-if="icon"
:size="24"
style="margin-right: 8px; background-color: #626aea"
>
<icon-filter />
</a-avatar>
<a-card-meta>
<template #title>
<a-typography-text style="margin-right: 10px">
{{ title }}
</a-typography-text>
<template v-if="showTag">
<a-tag
v-if="open && isExpires === false"
size="small"
color="green"
>
<template #icon>
<icon-check-circle-fill />
</template>
<span>{{ tagText }}</span>
</a-tag>
<a-tag v-else-if="isExpires" size="small" color="red">
<template #icon>
<icon-check-circle-fill />
</template>
<span>{{ expiresTagText }}</span>
</a-tag>
</template>
</template>
<template #description>
{{ description }}
<slot></slot>
</template>
</a-card-meta>
</a-space>
<template #actions>
<a-switch v-if="actionType === 'switch'" v-model="open" />
<a-space v-else-if="actionType === 'button'">
<template v-if="isExpires">
<a-button type="outline" @click="renew">
{{ expiresText }}
</a-button>
</template>
<template v-else>
<a-button v-if="open" @click="handleToggle">
{{ closeTxt }}
</a-button>
<a-button v-else-if="!open" type="outline" @click="handleToggle">
{{ openTxt }}
</a-button>
</template>
</a-space>
<div v-else>
<a-space>
<a-button @click="toggle(false)">
{{ closeTxt }}
</a-button>
<a-button type="primary" @click="toggle(true)">
{{ openTxt }}
</a-button>
</a-space>
</div>
</template>
</a-card>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { useToggle } from '@vueuse/core';
const props = defineProps({
loading: {
type: Boolean,
default: false,
},
title: {
type: String,
default: '',
},
description: {
type: String,
default: '',
},
actionType: {
type: String,
default: '',
},
defaultValue: {
type: Boolean,
default: false,
},
openTxt: {
type: String,
default: '',
},
closeTxt: {
type: String,
default: '',
},
expiresText: {
type: String,
default: '',
},
icon: {
type: String,
default: '',
},
showTag: {
type: Boolean,
default: true,
},
tagText: {
type: String,
default: '',
},
expires: {
type: Boolean,
default: false,
},
expiresTagText: {
type: String,
default: '',
},
});
const [open, toggle] = useToggle(props.defaultValue);
const handleToggle = () => {
toggle();
};
const isExpires = ref(props.expires);
const renew = () => {
isExpires.value = false;
};
</script>
<style scoped lang="less">
.card-wrap {
height: 100%;
transition: all 0.3s;
border: 1px solid var(--color-neutral-3);
border-radius: 4px;
&:hover {
transform: translateY(-4px);
// box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
:deep(.arco-card) {
height: 100%;
border-radius: 4px;
.arco-card-body {
height: 100%;
.arco-space {
width: 100%;
height: 100%;
.arco-space-item {
height: 100%;
&:last-child {
flex: 1;
}
.arco-card-meta {
height: 100%;
display: flex;
flex-flow: column;
.arco-card-meta-content {
flex: 1;
.arco-card-meta-description {
margin-top: 8px;
color: rgb(var(--gray-6));
line-height: 20px;
font-size: 12px;
}
}
.arco-card-meta-footer {
margin-top: 0;
}
}
}
}
}
}
:deep(.arco-card-meta-title) {
display: flex;
align-items: center;
// To prevent the shaking
line-height: 28px;
}
:deep(.arco-skeleton-line) {
&:last-child {
display: flex;
justify-content: flex-end;
margin-top: 20px;
}
}
}
</style>

View file

@ -0,0 +1,115 @@
<template>
<div class="list-wrap">
<a-typography-title class="block-title" :heading="6">
{{ $t('cardList.tab.title.content') }}
</a-typography-title>
<a-row class="list-row" :gutter="24">
<a-col
:xs="12"
:sm="12"
:md="12"
:lg="6"
:xl="6"
:xxl="6"
class="list-col"
>
<div class="card-wrap empty-wrap">
<a-card :bordered="false" hoverable>
<a-result :status="null" :title="$t('cardList.content.action')">
<template #icon>
<icon-plus style="font-size: 20px" />
</template>
</a-result>
</a-card>
</div>
</a-col>
<a-col
v-for="item in renderData"
:key="item.id"
class="list-col"
:xs="12"
:sm="12"
:md="12"
:lg="6"
:xl="6"
:xxl="6"
>
<CardWrap
:loading="loading"
:title="item.title"
:description="item.description"
:default-value="item.enable"
:action-type="item.actionType"
:icon="item.icon"
:open-txt="$t('cardList.content.inspection')"
:close-txt="$t('cardList.content.delete')"
:show-tag="false"
>
<a-descriptions
style="margin-top: 16px"
:data="item.data"
layout="inline-horizontal"
:column="2"
/>
<template #skeleton>
<a-skeleton :animation="true">
<a-skeleton-line
:widths="['50%', '50%', '100%', '40%']"
:rows="4"
/>
<a-skeleton-line :widths="['40%']" :rows="1" />
</a-skeleton>
</template>
</CardWrap>
</a-col>
</a-row>
</div>
</template>
<script lang="ts" setup>
import { queryInspectionList, ServiceRecord } from '@/api/list';
import useRequest from '@/hooks/request';
import CardWrap from './card-wrap.vue';
const defaultValue: ServiceRecord[] = new Array(3).fill({});
const { loading, response: renderData } = useRequest<ServiceRecord[]>(
queryInspectionList,
defaultValue
);
</script>
<style scoped lang="less">
.card-wrap {
height: 100%;
transition: all 0.3s;
border: 1px solid var(--color-neutral-3);
&:hover {
transform: translateY(-4px);
}
:deep(.arco-card-meta-description) {
color: rgb(var(--gray-6));
.arco-descriptions-item-label-inline {
font-weight: normal;
font-size: 12px;
color: rgb(var(--gray-6));
}
.arco-descriptions-item-value-inline {
color: rgb(var(--gray-8));
}
}
}
.empty-wrap {
height: 200px;
border-radius: 4px;
:deep(.arco-card) {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
.arco-result-title {
color: rgb(var(--gray-6));
}
}
}
</style>

View file

@ -0,0 +1,51 @@
<template>
<div class="list-wrap">
<a-typography-title class="block-title" :heading="6">
{{ $t('cardList.tab.title.preset') }}
</a-typography-title>
<a-row class="list-row" :gutter="24">
<a-col
v-for="item in renderData"
:key="item.id"
:xs="12"
:sm="12"
:md="12"
:lg="6"
:xl="6"
:xxl="6"
class="list-col"
style="min-height: 140px"
>
<CardWrap
:loading="loading"
:title="item.title"
:description="item.description"
:default-value="item.enable"
:action-type="item.actionType"
:tag-text="$t('cardList.preset.tag')"
>
<template #skeleton>
<a-skeleton :animation="true">
<a-skeleton-line :widths="['100%', '40%']" :rows="2" />
<a-skeleton-line :widths="['40%']" :rows="1" />
</a-skeleton>
</template>
</CardWrap>
</a-col>
</a-row>
</div>
</template>
<script lang="ts" setup>
import { queryRulesPresetList, ServiceRecord } from '@/api/list';
import useRequest from '@/hooks/request';
import CardWrap from './card-wrap.vue';
const defaultValue: ServiceRecord[] = new Array(6).fill({});
const { loading, response: renderData } = useRequest<ServiceRecord[]>(
queryRulesPresetList,
defaultValue
);
</script>
<style scoped lang="less"></style>

View file

@ -0,0 +1,57 @@
<template>
<div class="list-wrap">
<a-typography-title class="block-title" :heading="6">
{{ $t('cardList.tab.title.service') }}
</a-typography-title>
<a-row class="list-row" :gutter="24">
<a-col
v-for="item in renderData"
:key="item.id"
:xs="12"
:sm="12"
:md="12"
:lg="6"
:xl="6"
:xxl="6"
class="list-col"
style="min-height: 162px"
>
<CardWrap
:loading="loading"
:title="item.title"
:description="item.description"
:default-value="item.enable"
:action-type="item.actionType"
:expires="item.expires"
:open-txt="$t('cardList.service.open')"
:close-txt="$t('cardList.service.cancel')"
:expires-text="$t('cardList.service.renew')"
:tag-text="$t('cardList.service.tag')"
:expires-tag-text="$t('cardList.service.expiresTag')"
:icon="item.icon"
>
<template #skeleton>
<a-skeleton :animation="true">
<a-skeleton-line :widths="['100%', '40%', '100%']" :rows="3" />
<a-skeleton-line :widths="['40%']" :rows="1" />
</a-skeleton>
</template>
</CardWrap>
</a-col>
</a-row>
</div>
</template>
<script lang="ts" setup>
import { queryTheServiceList, ServiceRecord } from '@/api/list';
import useRequest from '@/hooks/request';
import CardWrap from './card-wrap.vue';
const defaultValue: ServiceRecord[] = new Array(4).fill({});
const { loading, response: renderData } = useRequest<ServiceRecord[]>(
queryTheServiceList,
defaultValue
);
</script>
<style scoped lang="less"></style>

View file

@ -0,0 +1,185 @@
<template>
<div class="container">
<Breadcrumb :items="['小工具', '设置管理']" />
<a-row :gutter="20" align="stretch">
<a-col :span="24">
<a-card class="general-card" title="设置管理">
<a-row style="margin-bottom: 16px">
<a-col :span="12">
<a-space>
<a-button type="primary" @click="readChannel">
<template #icon>
<icon-plus />
</template>
从设备读取
</a-button>
<a-button @click="writeChannel">
<template #icon>
<icon-plus />
</template>
写入设备
</a-button>
</a-space>
</a-col>
<a-col :span="12" style="text-align: right;">
<a-space>
<a-button type="primary" @click="saveChannel">
保存
</a-button>
<a-button @click="restoreChannel">
加载
</a-button>
</a-space>
</a-col>
</a-row>
<a-spin :loading="loading" style="width: 100%;">
<a-form-item :label-col-style="{width: '15%'}" field="logo_line1" label="启动画面首行文字">
<a-input v-model="state.logo_line1" />
</a-form-item>
<a-form-item :label-col-style="{width: '15%'}" field="logo_line2" label="启动画面次行文字">
<a-input v-model="state.logo_line2" />
</a-form-item>
<a-form-item :label-col-style="{width: '15%'}" field="logo_line2" label="本地播放首尾音仅117P6">
<a-switch v-model="state.mdc_audio_local" type="round"/>
</a-form-item>
</a-spin>
</a-card>
</a-col>
</a-row>
</div>
</template>
<script lang="ts" setup>
import { reactive, nextTick } from 'vue';
import useLoading from '@/hooks/loading';
import { useAppStore } from '@/store';
import { eeprom_write, eeprom_reboot, eeprom_init, eeprom_read, uint8ArrayToString, stringToUint8Array } from '@/utils/serial.js';
const appStore = useAppStore();
const { loading, setLoading } = useLoading(false);
const state = reactive({
logo_line1: '',
logo_line2: '',
mdc_audio_local: true
})
const readChannel = async() => {
if(appStore.connectState != true){alert('请先连接手台!'); return;};
await eeprom_init(appStore.connectPort);
setLoading(true)
if(appStore.configuration?.charset == "losehu"){
let logo = new Uint8Array(0x026);
logo.set(await eeprom_read(appStore.connectPort, 0x1e320, 0x026, appStore.configuration?.uart), 0)
state.logo_line1 = uint8ArrayToString(logo.subarray(0, 0x13), appStore.configuration?.charset)
state.logo_line2 = uint8ArrayToString(logo.subarray(0x13, 0x26), appStore.configuration?.charset)
}else if(appStore.configuration?.charset == "gb2312"){
let logo = new Uint8Array(0x024);
logo.set(await eeprom_read(appStore.connectPort, 0x02000, 0x024, appStore.configuration?.uart), 0)
state.logo_line1 = uint8ArrayToString(logo.subarray(0, 0x12), appStore.configuration?.charset)
state.logo_line2 = uint8ArrayToString(logo.subarray(0x12, 0x024), appStore.configuration?.charset)
}else{
let logo = new Uint8Array(0x020);
logo.set(await eeprom_read(appStore.connectPort, 0xEB0, 0x020, appStore.configuration?.uart), 0)
state.logo_line1 = uint8ArrayToString(logo.subarray(0, 0x10), appStore.configuration?.charset)
state.logo_line2 = uint8ArrayToString(logo.subarray(0x10, 0x20), appStore.configuration?.charset)
}
if(parseInt(await eeprom_read(appStore.connectPort, 0x01FFD, 0x01, appStore.configuration?.uart)) == 0){
state.mdc_audio_local = false
}else{
state.mdc_audio_local = true
}
setLoading(false)
}
const writeChannel = async() => {
if(appStore.connectState != true){alert('请先连接手台!'); return;};
setLoading(true)
await eeprom_init(appStore.connectPort);
if(appStore.configuration?.charset == "losehu"){
let logo = new Uint8Array(0x26);
logo.set(stringToUint8Array(state.logo_line1, appStore.configuration?.charset).subarray(0, 0x13), 0);
logo.set(stringToUint8Array(state.logo_line2, appStore.configuration?.charset).subarray(0, 0x13), 0x13);
await eeprom_write(appStore.connectPort, 0x1e31e, [18, 18], 0x02, appStore.configuration?.uart);
await eeprom_write(appStore.connectPort, 0x1e320, logo, 0x26, appStore.configuration?.uart);
}else if(appStore.configuration?.charset == "gb2312"){
let logo = new Uint8Array(0x24);
logo.set(stringToUint8Array(state.logo_line1, appStore.configuration?.charset).subarray(0, 0x12), 0);
logo.set(stringToUint8Array(state.logo_line2, appStore.configuration?.charset).subarray(0, 0x12), 0x12);
await eeprom_write(appStore.connectPort, 0x02024, [18, 18], 0x02, appStore.configuration?.uart);
await eeprom_write(appStore.connectPort, 0x02000, logo, 0x24, appStore.configuration?.uart);
}else{
let logo = new Uint8Array(0x020);
logo.set(stringToUint8Array(state.logo_line1, appStore.configuration?.charset).subarray(0, 0x10), 0);
logo.set(stringToUint8Array(state.logo_line2, appStore.configuration?.charset).subarray(0, 0x10), 0x10);
await eeprom_write(appStore.connectPort, 0xEB0, logo, 0x20, appStore.configuration?.uart);
}
if(appStore.configuration?.localmdc){
await eeprom_write(appStore.connectPort, 0x01FFD, new Uint8Array([state.mdc_audio_local ? 1 : 0]), 0x01, appStore.configuration?.uart);
}
await eeprom_reboot(appStore.connectPort);
setLoading(false)
}
const saveChannel = async() => {
}
const restoreChannel = async() => {
}
</script>
<script lang="ts">
export default {
name: 'Chi',
};
</script>
<style scoped lang="less">
.container {
padding: 0 20px 20px 20px;
:deep(.arco-list-content) {
overflow-x: hidden;
}
:deep(.arco-card-meta-title) {
font-size: 14px;
}
}
:deep(.arco-list-col) {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
:deep(.arco-list-item) {
width: 33%;
}
:deep(.block-title) {
margin: 0 0 12px 0;
font-size: 14px;
}
:deep(.list-wrap) {
// min-height: 140px;
.list-row {
align-items: stretch;
.list-col {
margin-bottom: 16px;
}
}
:deep(.arco-space) {
width: 100%;
.arco-space-item {
&:last-child {
flex: 1;
}
}
}
}
</style>

View file

@ -0,0 +1,19 @@
export default {
'menu.list.cardList': 'Card List',
'cardList.tab.title.all': 'All',
'cardList.tab.title.content': 'Quality Inspection',
'cardList.tab.title.service': 'The service',
'cardList.tab.title.preset': 'Rules Preset',
'cardList.searchInput.placeholder': 'Search',
'cardList.enable': 'Enable',
'cardList.disable': 'Disable',
'cardList.content.delete': 'Delete',
'cardList.content.inspection': 'Inspection',
'cardList.content.action': 'Click Create Qc Content queue',
'cardList.service.open': 'Open',
'cardList.service.cancel': 'Cancel',
'cardList.service.renew': 'Contract of service',
'cardList.service.tag': 'Opened',
'cardList.service.expiresTag': 'Expired',
'cardList.preset.tag': 'Enable',
};

View file

@ -0,0 +1,19 @@
export default {
'menu.list.cardList': '卡片列表',
'cardList.tab.title.all': '全部',
'cardList.tab.title.content': '内容质检',
'cardList.tab.title.service': '开通服务',
'cardList.tab.title.preset': '规则预置',
'cardList.searchInput.placeholder': '搜索',
// 'cardList.statistic.enable': '已启用',
// 'cardList.statistic.disable': '未启用',
'cardList.content.delete': '删除',
'cardList.content.inspection': '质检',
'cardList.content.action': '点击创建质检内容队列',
'cardList.service.open': '开通服务',
'cardList.service.cancel': '取消服务',
'cardList.service.renew': '续约服务',
'cardList.service.tag': '已开通',
'cardList.service.expiresTag': '已过期',
'cardList.preset.tag': '已启用',
};

View file

@ -0,0 +1,186 @@
import Mock from 'mockjs';
import setupMock, { successResponseWrap } from '@/utils/setup-mock';
import { ServiceRecord } from '@/api/list';
const qualityInspectionList: ServiceRecord[] = [
{
id: 1,
name: 'quality',
title: '视频类-历史导入',
description: '2021-10-12 00:00:00',
data: [
{
label: '待质检数',
value: '120',
},
{
label: '积压时长',
value: '60s',
},
{
label: '待抽检数',
value: '0',
},
],
},
{
id: 2,
name: 'quality',
title: '图文类-图片版权',
description: '2021-12-11 18:30:00',
data: [
{
label: '待质检数',
value: '120',
},
{
label: '积压时长',
value: '60s',
},
{
label: '待抽检数',
value: '0',
},
],
},
{
id: 3,
name: 'quality',
title: '图文类-高清图片',
description: '2021-10-15 08:10:00',
data: [
{
label: '待质检数',
value: '120',
},
{
label: '积压时长',
value: '60s',
},
{
label: '待抽检数',
value: '0',
},
],
},
];
const theServiceList: ServiceRecord[] = [
{
id: 1,
icon: 'code',
title: '漏斗分析',
description:
'用户行为分析之漏斗分析模型是企业实现精细化运营、进行用户行为分析的重要数据分析模型。',
enable: true,
actionType: 'button',
},
{
id: 2,
icon: 'edit',
title: '用户分布',
description:
'快速诊断用户人群,地域细分情况,了解数据分布的集中度,以及主要的数据分布的区间段是什么。',
enable: true,
actionType: 'button',
expires: true,
},
{
id: 3,
icon: 'user',
title: '资源分发',
description:
'移动端动态化资源分发解决方案。提供稳定大流量服务支持、灵活定制的分发圈选规则,通过离线化预加载。',
enable: false,
actionType: 'button',
},
{
id: 4,
icon: 'user',
title: '用户画像分析',
description:
'用户画像就是将典型用户信息标签化,根据用户特征、业务场景和用户行为等信息,构建一个标签化的用户模型。',
enable: true,
actionType: 'button',
},
];
const rulesPresetList: ServiceRecord[] = [
{
id: 1,
title: '内容屏蔽规则',
description:
'用户在执行特定的内容分发任务时,可使用内容屏蔽规则根据特定标签,过滤内容集合。',
enable: true,
actionType: 'switch',
},
{
id: 2,
title: '内容置顶规则',
description:
'该规则支持用户在执行特定内容分发任务时,对固定的几条内容置顶。',
enable: true,
actionType: 'switch',
},
{
id: 3,
title: '内容加权规则',
description: '选定内容加权规则后可自定义从不同内容集合获取内容的概率。',
enable: false,
actionType: 'switch',
},
{
id: 4,
title: '内容分发规则',
description: '内容分发时对某些内容需要固定在C端展示的位置。',
enable: true,
actionType: 'switch',
},
{
id: 5,
title: '违禁内容识别',
description: '精准识别赌博、刀枪、毒品、造假、贩假等违规物品和违规行为。',
enable: false,
actionType: 'switch',
},
{
id: 6,
title: '多语言文字符号识别',
description:
'精准识别英语、维语、藏语、蒙古语、朝鲜语等多种语言以及emoji表情形态的语义识别。',
enable: false,
actionType: 'switch',
},
];
setupMock({
setup() {
// Quality Inspection
Mock.mock(new RegExp('/api/list/quality-inspection'), () => {
return successResponseWrap(
qualityInspectionList.map((_, index) => ({
...qualityInspectionList[index % qualityInspectionList.length],
id: Mock.Random.guid(),
}))
);
});
// the service
Mock.mock(new RegExp('/api/list/the-service'), () => {
return successResponseWrap(
theServiceList.map((_, index) => ({
...theServiceList[index % theServiceList.length],
id: Mock.Random.guid(),
}))
);
});
// rules preset
Mock.mock(new RegExp('/api/list/rules-preset'), () => {
return successResponseWrap(
rulesPresetList.map((_, index) => ({
...rulesPresetList[index % rulesPresetList.length],
id: Mock.Random.guid(),
}))
);
});
},
});