diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 70387ae3aee2954634c607f586c988879fa44121..31172ec1d063baa12f11af6a40cb50734752f8cf 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -63,6 +63,14 @@ export default defineConfig({ text: '数字翻牌器', link: '/guide/digital-flop', }, + { + text: '大屏循环单选列表', + link: '/guide/screen-radio-list', + }, + { + text: '大屏实时时间', + link: '/guide/screen-real-time', + }, ], }, ], diff --git a/docs/guide/screen-radio-list.md b/docs/guide/screen-radio-list.md new file mode 100644 index 0000000000000000000000000000000000000000..808d09c90fa8cfdc38fbdbe176c9317b61bf6339 --- /dev/null +++ b/docs/guide/screen-radio-list.md @@ -0,0 +1,40 @@ +# 大屏循环单选列表 + +循环单选列表为大屏单选项列表呈现模式,单选项列表的一种增强,要达到该目标,需要在单选项列表编辑器上绑定编辑器样式,然后设置编辑器参数。 + +## 效果呈现 + +![效果呈现](../public/img/screen-radio-list.png) + +## 编辑器参数配置 + +| 属性名 | 描述 | 类型 | 默认值 | +| --------------- | ------------ | ------- | ------ | +| ENABLECIRCULATE | 是否开启循环 | boolean | true | +| INTERVALTIME | 循环间隔 | number | 3000 | + +## 插件 + +该插件隶属于编辑器样式(基于单选项列表进行扩展),下方数据导入应用即可使用 + +::: details 点我查看代码 + +```json +[ + { + "codename": "SCREEN_RADIO_LIST", + "repdefault": 0, + "validflag": 1, + "pssyseditorstylename": "大屏循环单选列表", + "pseditortypeid": "RADIOBUTTONLIST" + } +] +``` + +::: + +## 配置 + +大屏门户插件配置 + +![配置](../public/img/screen-radio-list_config.png) diff --git a/docs/guide/screen-real-time.md b/docs/guide/screen-real-time.md new file mode 100644 index 0000000000000000000000000000000000000000..d4bc8906099137fb0a2bb613953fe093c7ecb165 --- /dev/null +++ b/docs/guide/screen-real-time.md @@ -0,0 +1,41 @@ +# 大屏实时时间 + +大屏实时时间为大屏时间呈现模式,标签的一种增强,要达到该目标,需要在标签编辑器上绑定编辑器样式,然后设置编辑器参数。 + +## 效果呈现 + +![效果呈现](../public/img/screen-real-time.png) + +## 编辑器参数配置 + +| 属性名 | 描述 | 类型 | 默认值 | +| --------- | ------------ | ------- | ---------- | +| LEFTTIME | 左侧时间 | string | YYYY-MM-DD | +| SHOWWEEK | 是否展示星期 | boolean | true | +| RIGHTTIME | 右侧时间 | string | HH:mm:ss | + +## 插件 + +该插件隶属于编辑器样式(基于标签进行扩展),下方数据导入应用即可使用 + +::: details 点我查看代码 + +```json +[ + { + "codename": "SCREEN_REAL_TIME", + "repdefault": 0, + "validflag": 1, + "pssyseditorstylename": "大屏实时时间", + "pseditortypeid": "SPAN" + } +] +``` + +::: + +## 配置 + +大屏门户插件配置 + +![配置](../public/img/screen-real-time_config.png) diff --git a/docs/public/img/screen-radio-list.png b/docs/public/img/screen-radio-list.png new file mode 100644 index 0000000000000000000000000000000000000000..a73109e01f7d51a4fcdd9b1d16e4ddec36d0fc58 Binary files /dev/null and b/docs/public/img/screen-radio-list.png differ diff --git a/docs/public/img/screen-radio-list_config.png b/docs/public/img/screen-radio-list_config.png new file mode 100644 index 0000000000000000000000000000000000000000..13e158aa9c30591f377839ab61c5ee81d91f4553 Binary files /dev/null and b/docs/public/img/screen-radio-list_config.png differ diff --git a/docs/public/img/screen-real-time.png b/docs/public/img/screen-real-time.png new file mode 100644 index 0000000000000000000000000000000000000000..ac0fd5aa806aeabc08837e3c4bb64462da8d6898 Binary files /dev/null and b/docs/public/img/screen-real-time.png differ diff --git a/docs/public/img/screen-real-time_config.png b/docs/public/img/screen-real-time_config.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f50ea74b7ee85bed7cbfe50007ab587407c91a Binary files /dev/null and b/docs/public/img/screen-real-time_config.png differ