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.
99 lines
2.2 KiB
Vue
99 lines
2.2 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"
|
|
>
|
|
<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">
|
|
<el-form-item label="装饰主颜色">
|
|
<ColorPicker
|
|
v-model="config.customize.decorationColor1"
|
|
:predefine="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="装饰副颜色">
|
|
<ColorPicker
|
|
v-model="config.customize.decorationColor2"
|
|
:predefine="predefineThemeColors"
|
|
/>
|
|
</el-form-item>
|
|
</div>
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ColorPicker from 'packages/ColorPicker/index.vue'
|
|
import PosWhSetting from 'packages/BigScreenDesign/RightSetting/PosWhSetting.vue'
|
|
import SettingTitle from 'packages/SettingTitle/index.vue'
|
|
export default {
|
|
name: 'BarSetting',
|
|
components: {
|
|
ColorPicker,
|
|
PosWhSetting,
|
|
SettingTitle
|
|
},
|
|
data () {
|
|
return {
|
|
// 预设主题色
|
|
predefineThemeColors: [
|
|
'#007aff',
|
|
'#1aa97b',
|
|
'#ff4d53',
|
|
'#1890FF',
|
|
'#DF0E1B',
|
|
'#0086CC',
|
|
'#2B74CF',
|
|
'#00BC9D',
|
|
'#ED7D32'
|
|
]
|
|
}
|
|
},
|
|
computed: {
|
|
config: {
|
|
get () {
|
|
return this.$store.state.bigScreen.activeItemConfig
|
|
},
|
|
set (val) {
|
|
this.$store.state.bigScreen.activeItemConfig = val
|
|
}
|
|
}
|
|
},
|
|
watch: {},
|
|
mounted () {
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.lc-field-body {
|
|
padding: 12px 16px;
|
|
}
|
|
</style>
|