You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
5.1 KiB
Vue
193 lines
5.1 KiB
Vue
<template>
|
|
<div class="bs-setting-wrap">
|
|
<el-form
|
|
ref="form"
|
|
:model="config"
|
|
label-width="90px"
|
|
label-position="left"
|
|
class="setting-body bs-el-form"
|
|
>
|
|
<slot name="top" />
|
|
<el-form
|
|
:model="config.customize"
|
|
label-position="left"
|
|
class="setting-body bs-el-form"
|
|
label-width="90px"
|
|
>
|
|
<SettingTitle>标题</SettingTitle>
|
|
<el-form-item label="边框名称" class="lc-field-body">
|
|
<el-input
|
|
v-model="config.title"
|
|
clearable
|
|
/>
|
|
</el-form-item>
|
|
<SettingTitle>位置</SettingTitle>
|
|
<div class="lc-field-body">
|
|
<PosWhSetting :config="config" />
|
|
</div>
|
|
<SettingTitle>旋转</SettingTitle>
|
|
<div class="lc-field-body">
|
|
<RotateSetting
|
|
:config="config"
|
|
/>
|
|
</div>
|
|
</el-form>
|
|
<SettingTitle>基础</SettingTitle>
|
|
<div class="lc-field-body">
|
|
<el-form-item label="文本">
|
|
<el-input
|
|
v-model="config.customize.text"
|
|
clearable
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="边框线颜色">
|
|
<ColorPicker
|
|
v-model="config.customize.borderColor"
|
|
placeholder="请选择边框线颜色"
|
|
:predefine-colors="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="背景色一">
|
|
<ColorPicker
|
|
v-model="config.customize.gradientColor0"
|
|
placeholder="请选择背景色"
|
|
:predefine-colors="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="背景色二">
|
|
<ColorPicker
|
|
v-model="config.customize.gradientColor1"
|
|
placeholder="请选择背景色"
|
|
:predefine-colors="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="渐变色方向">
|
|
<el-select
|
|
v-model="config.customize.gradientDirection"
|
|
popper-class="bs-el-select"
|
|
class="bs-el-select"
|
|
>
|
|
<el-option
|
|
v-for="item in gradientDirection"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="字体颜色">
|
|
<ColorPicker
|
|
v-model="config.customize.fontColor"
|
|
placeholder="请选择背景色"
|
|
:predefine-colors="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="边框线宽度">
|
|
<el-input-number
|
|
v-model="config.customize.borderWidth"
|
|
class="bs-el-input-number"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="字体大小">
|
|
<el-input-number
|
|
v-model="config.customize.fontSize"
|
|
class="bs-el-input-number"
|
|
:min="12"
|
|
:step="1"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="字体粗度">
|
|
<el-input-number
|
|
v-model="config.customize.fontWeight"
|
|
class="bs-el-input-number"
|
|
:min="400"
|
|
:step="1"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="不透明度">
|
|
<el-input-number
|
|
v-model="config.customize.opacity"
|
|
class="bs-el-input-number"
|
|
:min="0"
|
|
:max="100"
|
|
:step="1"
|
|
/>
|
|
</el-form-item>
|
|
</div>
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ColorPicker from 'data-room-ui/ColorPicker/index.vue'
|
|
import PosWhSetting from 'data-room-ui/BigScreenDesign/RightSetting/PosWhSetting.vue'
|
|
import RotateSetting from 'data-room-ui/BigScreenDesign/RightSetting/RotateSetting.vue'
|
|
import { predefineColors } from 'data-room-ui/js/utils/colorList'
|
|
import SettingTitle from 'data-room-ui/SettingTitle/index.vue'
|
|
export default {
|
|
name: 'Border14Setting',
|
|
components: {
|
|
SettingTitle,
|
|
ColorPicker,
|
|
PosWhSetting,
|
|
RotateSetting
|
|
},
|
|
props: {
|
|
config: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
predefineThemeColors: {
|
|
type: Array,
|
|
default: () => predefineColors
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
gradientDirection: [
|
|
{
|
|
label: '从左到右',
|
|
value: 'to right'
|
|
},
|
|
{
|
|
label: '从右到左',
|
|
value: 'to left'
|
|
},
|
|
{
|
|
label: '从上到下',
|
|
value: 'to bottom'
|
|
},
|
|
{
|
|
label: '从下到上',
|
|
value: 'to top'
|
|
},
|
|
{
|
|
label: '从左上到右下',
|
|
value: 'to bottom right'
|
|
},
|
|
{
|
|
label: '从右上到左下',
|
|
value: 'to bottom left'
|
|
},
|
|
{
|
|
label: '从左下到右上',
|
|
value: 'to top right'
|
|
},
|
|
{
|
|
label: '从右下到左上',
|
|
value: 'to top left'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
watch: {},
|
|
mounted () {},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.lc-field-body {
|
|
padding: 16px;
|
|
}
|
|
</style>
|