|
@@ -136,6 +136,21 @@
|
|
|
<el-button type="warning" plain class="w-full py-4 text-lg dashed-border mt-4" @click="openSpecialDialog">
|
|
<el-button type="warning" plain class="w-full py-4 text-lg dashed-border mt-4" @click="openSpecialDialog">
|
|
|
<el-icon class="mr-2"><Setting /></el-icon> 进入【特殊配置】 (暂停/结束/同步界面)
|
|
<el-icon class="mr-2"><Setting /></el-icon> 进入【特殊配置】 (暂停/结束/同步界面)
|
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 跑马灯内容 -->
|
|
|
|
|
+ <el-card shadow="hover" class="mt-4">
|
|
|
|
|
+ <template #header>
|
|
|
|
|
+ <span class="font-bold">跑马灯内容</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="form.marqueeText"
|
|
|
|
|
+ type="textarea"
|
|
|
|
|
+ :rows="4"
|
|
|
|
|
+ placeholder="请输入大屏底部跑马灯滚动显示的文字"
|
|
|
|
|
+ show-word-limit
|
|
|
|
|
+ :maxlength="500"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-card>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
|
|
<!-- ================= 右侧:配置表单区 ================= -->
|
|
<!-- ================= 右侧:配置表单区 ================= -->
|
|
@@ -423,7 +438,8 @@ const initFormData = {
|
|
|
// 特殊 - 暂停倒计时
|
|
// 特殊 - 暂停倒计时
|
|
|
pauseTimerBgColor: '#000000',
|
|
pauseTimerBgColor: '#000000',
|
|
|
pauseTimerTextColor: '#FFFFFF',
|
|
pauseTimerTextColor: '#FFFFFF',
|
|
|
- pauseTimerNumColor: '#00FF4D'
|
|
|
|
|
|
|
+ pauseTimerNumColor: '#00FF4D',
|
|
|
|
|
+ marqueeText: ''
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
const predefineColors = ref(['#ff4500', '#ff8c00', '#ffd700', '#90ee90', '#00ced1', '#1e90ff', '#c71585', '#ffffff']);
|
|
const predefineColors = ref(['#ff4500', '#ff8c00', '#ffd700', '#90ee90', '#00ced1', '#1e90ff', '#c71585', '#ffffff']);
|