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.
49 lines
1.0 KiB
Vue
49 lines
1.0 KiB
Vue
<template>
|
|
<div>
|
|
<BorderSetting
|
|
ref="form"
|
|
:config="config"
|
|
:predefine-theme-colors="predefineThemeColors"
|
|
>
|
|
<template slot="bottom">
|
|
<el-form-item label="翻转形态">
|
|
<el-switch
|
|
v-model="config.customize.reverse"
|
|
class="bs-el-switch"
|
|
active-color="#007aff"
|
|
/>
|
|
</el-form-item>
|
|
</template>
|
|
</BorderSetting>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import BorderSetting from 'data-room-ui/BigScreenDesign/BorderSetting.vue'
|
|
import {predefineColors} from "data-room-ui/js/utils/colorList";
|
|
export default {
|
|
name: 'Border4Setting',
|
|
components: {
|
|
BorderSetting
|
|
},
|
|
data () {
|
|
return {
|
|
// 预设主题色
|
|
predefineThemeColors: predefineColors
|
|
}
|
|
},
|
|
computed: {
|
|
config: {
|
|
get () {
|
|
return this.$store.state.bigScreen.activeItemConfig
|
|
},
|
|
set (val) {
|
|
this.$store.state.bigScreen.activeItemConfig = val
|
|
}
|
|
}
|
|
},
|
|
watch: {},
|
|
mounted () { },
|
|
methods: {}
|
|
}
|
|
</script>
|