|
@@ -101,6 +101,50 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-collapse-item>
|
|
|
+ <el-collapse-item title="名称" name="10" v-if="!getShow([30, 19])">
|
|
|
+ <div class="content">
|
|
|
+ <el-checkbox v-model="form.setting.text.show">显示名称</el-checkbox>
|
|
|
+ <div style="display:flex;margin-top: 10px;">
|
|
|
+ <span class="label" style="width:80px">主标题名称</span><el-input size="small" v-model="form.setting.text.text" placeholder="请输入" style="margin-left: 10px;"></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="display:flex;margin-top: 10px;">
|
|
|
+ <span class="label" style="width:80px">主标题链接</span><el-input size="small" v-model="form.setting.text.link" placeholder="请输入" style="margin-left: 10px;"></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <el-select size="small" v-model="form.setting.text.textStyle.fontFamily" placeholder="请选择" style="width: calc(100% - 160px)">
|
|
|
+ <el-option v-for="item in $constants.fontFamily" :label="item.label" :value="item.value"></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-input size="small" v-model.number="form.setting.text.textStyle.fontSize" type="number" placeholder="请输入" style="width: 105px;margin-left: 10px;"></el-input>
|
|
|
+ <el-color-picker size="small" v-model="form.setting.text.textStyle.color" style="margin-left: 10px; float:right;"></el-color-picker>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <el-checkbox v-model="form.setting.text.textStyle.fontWeight">字体加粗</el-checkbox>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;" class="title-padding">
|
|
|
+ <span class="label">位置</span>
|
|
|
+ <span class="label" style="margin: 0 5px;">垂直</span>
|
|
|
+ <el-input v-model.number="form.setting.text.bottom" size="small" placeholder="" style="width: 100px;"></el-input>
|
|
|
+ <span class="label" style="margin: 0 5px;">水平</span>
|
|
|
+ <el-input v-model.number="form.setting.text.left" size="small" placeholder="" style="width: 100px;"></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="display:flex;margin-top: 10px;">
|
|
|
+ <span class="label" style="width:80px">副标题名称</span><el-input size="small" v-model="form.setting.text.subtext" placeholder="请输入" style="margin-left: 10px;"></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="display:flex;margin-top: 10px;">
|
|
|
+ <span class="label" style="width:80px">副标题链接</span><el-input size="small" v-model="form.setting.text.sublink" placeholder="请输入" style="margin-left: 10px;"></el-input>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <el-select size="small" v-model="form.setting.text.subtextStyle.fontFamily" placeholder="请选择" style="width: calc(100% - 160px)">
|
|
|
+ <el-option v-for="item in $constants.fontFamily" :label="item.label" :value="item.value"></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-input size="small" v-model.number="form.setting.text.subtextStyle.fontSize" type="number" placeholder="请输入" style="width: 105px;margin-left: 10px;"></el-input>
|
|
|
+ <el-color-picker size="small" v-model="form.setting.text.subtextStyle.color" style="margin-left: 10px; float:right;"></el-color-picker>
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <el-checkbox v-model="form.setting.text.subtextStyle.fontWeight">字体加粗</el-checkbox>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-collapse-item>
|
|
|
<el-collapse-item title="颜色" name="2" v-if="!getShow([20, 18, 21, 23])">
|
|
|
<div class="content">
|
|
|
<el-container>
|