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.
48 lines
855 B
Vue
48 lines
855 B
Vue
<template>
|
|
<div>
|
|
<BorderSetting
|
|
ref="form"
|
|
:config="config"
|
|
:predefine-theme-colors="predefineThemeColors"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import BorderSetting from 'packages/BigScreenDesign/BorderSetting.vue'
|
|
export default {
|
|
name: 'Border2Setting',
|
|
components: {
|
|
BorderSetting
|
|
},
|
|
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>
|