返回按钮新增开关处理
parent
ddc1eaf54e
commit
ec1a015c3e
|
|
@ -57,6 +57,12 @@
|
|||
<el-checkbox v-for="item in base_list.list_show_list.filter((item) => item.type.includes(form.theme))" :key="item.value" :value="item.value">{{ item.name }}</el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="返回按钮">
|
||||
<div class="flex-row align-c gap-10">
|
||||
<el-switch v-model="form.is_left_back_btn_show" active-value="1" inactive-value="0"></el-switch>
|
||||
<tooltip content="当从其他页面进入时有效"></tooltip>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</card-container>
|
||||
<template v-if="['4', '5'].includes(form.theme)">
|
||||
<div class="bg-f5 divider-line" />
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ interface DefaultFooterNav {
|
|||
title: string;
|
||||
link: object;
|
||||
data_alone_row_value: string[];
|
||||
is_left_back_btn_show: string;
|
||||
indicator_location: string;
|
||||
bottom_navigation_show: string;
|
||||
positioning_name: string;
|
||||
|
|
@ -126,6 +127,7 @@ const defaultFooterNav: DefaultFooterNav = {
|
|||
link: {},
|
||||
// 换行内容
|
||||
data_alone_row_value: [],
|
||||
is_left_back_btn_show: '1',
|
||||
// 对齐方式
|
||||
indicator_location: 'center',
|
||||
// 右侧图标信息
|
||||
|
|
|
|||
Loading…
Reference in New Issue