|
|
@ -3,28 +3,31 @@
|
|
|
|
<el-form
|
|
|
|
<el-form
|
|
|
|
ref="form"
|
|
|
|
ref="form"
|
|
|
|
:model="config"
|
|
|
|
:model="config"
|
|
|
|
class="setting-body"
|
|
|
|
class="setting-body bs-el-form"
|
|
|
|
label-position="left"
|
|
|
|
label-position="left"
|
|
|
|
label-width="90px"
|
|
|
|
label-width="90px"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-form
|
|
|
|
<el-form
|
|
|
|
:model="config.customize"
|
|
|
|
:model="config.customize"
|
|
|
|
class="setting-body"
|
|
|
|
class="setting-body bs-el-form"
|
|
|
|
label-position="left"
|
|
|
|
label-position="left"
|
|
|
|
label-width="90px"
|
|
|
|
label-width="90px"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<SettingTitle>标题</SettingTitle>
|
|
|
|
<SettingTitle>标题</SettingTitle>
|
|
|
|
<el-form-item class="lc-field-body" label="装饰名称">
|
|
|
|
<el-form-item
|
|
|
|
<el-input
|
|
|
|
class="lc-field-body"
|
|
|
|
v-model="config.title"
|
|
|
|
label="装饰名称"
|
|
|
|
clearable
|
|
|
|
>
|
|
|
|
/>
|
|
|
|
<el-input
|
|
|
|
</el-form-item>
|
|
|
|
v-model="config.title"
|
|
|
|
<SettingTitle>位置</SettingTitle>
|
|
|
|
clearable
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<SettingTitle>位置</SettingTitle>
|
|
|
|
<div class="lc-field-body">
|
|
|
|
<div class="lc-field-body">
|
|
|
|
<PosWhSetting :config="config" />
|
|
|
|
<PosWhSetting :config="config" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<SettingTitle>基础</SettingTitle>
|
|
|
|
<SettingTitle>基础</SettingTitle>
|
|
|
|
<div class="lc-field-body">
|
|
|
|
<div class="lc-field-body">
|
|
|
|
<el-form-item label="装饰主颜色">
|
|
|
|
<el-form-item label="装饰主颜色">
|
|
|
|
<ColorPicker
|
|
|
|
<ColorPicker
|
|
|
@ -47,8 +50,7 @@
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|