|
|
|
@ -133,6 +133,23 @@
|
|
|
|
|
label="请输入首行文字大小"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item
|
|
|
|
|
label="文字类型"
|
|
|
|
|
label-width="100px"
|
|
|
|
|
>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="config.customize.fontFamily"
|
|
|
|
|
popper-class="bs-el-select"
|
|
|
|
|
class="bs-el-select"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fontFamilyList"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label-width="100px" label="首行字体颜色">
|
|
|
|
|
<ColorPicker
|
|
|
|
|
v-model="config.customize.firstColor"
|
|
|
|
@ -193,6 +210,7 @@ import {predefineColors} from "data-room-ui/js/utils/colorList";
|
|
|
|
|
import BorderSetting from 'data-room-ui/BigScreenDesign/RightSetting/BorderSetting.vue'
|
|
|
|
|
import PosWhSetting from 'data-room-ui/BigScreenDesign/RightSetting/PosWhSetting.vue'
|
|
|
|
|
import RotateSetting from 'data-room-ui/BigScreenDesign/RightSetting/RotateSetting.vue'
|
|
|
|
|
import fontList from 'data-room-ui/js/utils/fontList'
|
|
|
|
|
export default {
|
|
|
|
|
name: 'BarSetting',
|
|
|
|
|
components: {
|
|
|
|
@ -239,7 +257,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// 预设主题色
|
|
|
|
|
predefineThemeColors: predefineColors
|
|
|
|
|
predefineThemeColors: predefineColors,
|
|
|
|
|
fontFamilyList: fontList,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|