You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
6.1 KiB
239 lines
6.1 KiB
<template>
|
|
<div class="textTool">
|
|
<h3 class="toolTit">公告设置</h3>
|
|
<div class="operationBox">
|
|
<div class="itemBox">
|
|
<div class="Tit">标题颜色</div>
|
|
<div class="Info">{{activeComponent.componentContent.titColor}}</div>
|
|
<div class="modifyBox">
|
|
<div class="colorBox">
|
|
<span @click="resetColor">{{ $t('common.reset') }}</span>
|
|
<div class="block">
|
|
<el-color-picker v-model="activeComponent.componentContent.titColor"></el-color-picker>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="itemBox">
|
|
<div class="Tit">背景颜色</div>
|
|
<div class="Info">{{activeComponent.componentContent.bgColor}}</div>
|
|
<div class="modifyBox">
|
|
<div class="colorBox">
|
|
<span @click="resetBgColor">{{ $t('common.reset') }}</span>
|
|
<div class="block">
|
|
<el-color-picker v-model="activeComponent.componentContent.bgColor"></el-color-picker>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {toolMixin} from '@@/config/mixin'
|
|
import FontSizeSelect from '../toolModule/font-size-select'
|
|
export default {
|
|
name: 'Tool',
|
|
components: { FontSizeSelect },
|
|
mixins: [toolMixin],
|
|
data () {
|
|
return {
|
|
linkOptions: [
|
|
{
|
|
value: '/index',
|
|
label: '首页'
|
|
},
|
|
{
|
|
value: '/list',
|
|
label: '列表页'
|
|
},
|
|
{
|
|
value: '/detail',
|
|
label: '详情页'
|
|
},
|
|
{
|
|
value: '/about',
|
|
label: '关于我们'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
computed: {
|
|
fontSize () {
|
|
if (this.activeComponent.componentContent.fontSizeNum === 16) {
|
|
return '大'
|
|
} else if (this.activeComponent.componentContent.fontSizeNum === 14) {
|
|
return '中'
|
|
} else {
|
|
return '小'
|
|
}
|
|
},
|
|
describeSize () {
|
|
if (this.activeComponent.componentContent.describeSizeNum === 16) {
|
|
return '大'
|
|
} else if (this.activeComponent.componentContent.describeSizeNum === 14) {
|
|
return '中'
|
|
} else {
|
|
return '小'
|
|
}
|
|
},
|
|
positionText () {
|
|
if (this.activeComponent.componentContent.textPos === 'left') {
|
|
return '左'
|
|
} else if (this.activeComponent.componentContent.textPos === 'center') {
|
|
return '中'
|
|
} else {
|
|
return '右'
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
// 修改文字对齐方向
|
|
textPosition (type) {
|
|
this.activeComponent.componentContent.textPos = type
|
|
},
|
|
// 修改文本大小
|
|
changeSize (sizeNum) {
|
|
this.activeComponent.componentContent.fontSizeNum = sizeNum
|
|
},
|
|
// 修改描述大小
|
|
changeDescribe (sizeNum) {
|
|
this.activeComponent.componentContent.describeSizeNum = sizeNum
|
|
},
|
|
// 修改文本字体粗细
|
|
changeFontW (type) {
|
|
this.activeComponent.componentContent.textFontW = type
|
|
},
|
|
// 修改描述文字粗细
|
|
changeInfoFontW (type) {
|
|
this.activeComponent.componentContent.describeFontW = type
|
|
},
|
|
// 重置文本颜色
|
|
resetColor () {
|
|
this.activeComponent.componentContent.titColor = '#333333'
|
|
},
|
|
// 重置描述颜色
|
|
resetDescribeColor () {
|
|
this.activeComponent.componentContent.describeColor = '#333333'
|
|
},
|
|
// 重置背景颜色
|
|
resetBgColor () {
|
|
this.activeComponent.componentContent.bgColor = '#FFFFFF'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.textTool {
|
|
padding: 20px 20px 0 20px;
|
|
h3 {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
color: #333333;
|
|
margin-bottom: 20px;
|
|
}
|
|
.toolBox {
|
|
padding-bottom: 10px;
|
|
.itemBox {
|
|
label {
|
|
font-size: 14px;
|
|
color: #666666;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
margin-bottom: 15px;
|
|
}
|
|
border-bottom: 1px solid #eeeeee;
|
|
}
|
|
.operationBox {
|
|
margin-top: 30px;
|
|
.itemBox {
|
|
font-size: 14px;
|
|
display: flex;
|
|
margin-bottom: 20px;
|
|
align-items: center;
|
|
.Tit {
|
|
color: #888888;
|
|
margin-right: 10px;
|
|
width: 70px;
|
|
}
|
|
.Info {
|
|
color: #222222;
|
|
}
|
|
.modifyBox {
|
|
text-align: right;
|
|
margin-left: auto;
|
|
span {
|
|
height: 26px;
|
|
line-height: 26px;
|
|
float: left;
|
|
display: block;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
width: 30px;
|
|
border: 1px solid #E8EAEC;
|
|
}
|
|
/*span:last-child {*/
|
|
/* border-right: 1px solid #E8EAEC;*/
|
|
/*}*/
|
|
.textActive {
|
|
border: 1px solid $mainColor;
|
|
color: $mainColor;
|
|
}
|
|
.colorBox {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
span {
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
border: none;
|
|
color: $mainColor;
|
|
}
|
|
}
|
|
}
|
|
.fontSize {
|
|
span:nth-child(1) {
|
|
font-size: 16px;
|
|
}
|
|
span:nth-child(2) {
|
|
font-size: 14px;
|
|
}
|
|
span:nth-child(3) {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
.moreBox{
|
|
border: 1px solid #E8EAEC;
|
|
border-radius: 4px;
|
|
padding:20px 10px;
|
|
.radio{
|
|
margin-bottom: 20px;
|
|
}
|
|
.el-radio{
|
|
margin-right: 10px;
|
|
}
|
|
.link{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
.block {
|
|
height: 30px;
|
|
}
|
|
::v-deep .el-color-picker__trigger {
|
|
width: 45px;
|
|
height: 26px;
|
|
}
|
|
::v-deep .el-icon-arrow-down:before {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|