Merge pull request #886 from dataease/pr@dev@style_de_tabs

style: 调整仪表板tabs组件样式
This commit is contained in:
fit2cloud-chenyw 2021-09-26 17:56:25 +08:00 committed by GitHub
commit d3929f5f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 36 additions and 13 deletions

View File

@ -12,7 +12,7 @@
<el-dropdown-item icon="el-icon-arrow-up" @click.native="upComponent">{{ $t('panel.upComponent') }}</el-dropdown-item> <el-dropdown-item icon="el-icon-arrow-up" @click.native="upComponent">{{ $t('panel.upComponent') }}</el-dropdown-item>
<el-dropdown-item icon="el-icon-arrow-down" @click.native="downComponent">{{ $t('panel.downComponent') }}</el-dropdown-item> <el-dropdown-item icon="el-icon-arrow-down" @click.native="downComponent">{{ $t('panel.downComponent') }}</el-dropdown-item>
<el-dropdown-item v-if="'view'===curComponent.type" icon="el-icon-link" @click.native="linkageSetting">{{ $t('panel.linkage_setting') }}</el-dropdown-item> <el-dropdown-item v-if="'view'===curComponent.type" icon="el-icon-link" @click.native="linkageSetting">{{ $t('panel.linkage_setting') }}</el-dropdown-item>
<el-dropdown-item v-if="'de-tabs'===curComponent.type" icon="el-icon-link" @click.native="addTab">新增Tab</el-dropdown-item> <el-dropdown-item v-if="'de-tabs'===curComponent.type" icon="el-icon-link" @click.native="addTab">{{ $t('panel.add_tab') }}</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
</div> </div>
@ -87,13 +87,13 @@ export default {
paste() { paste() {
this.$store.commit('paste', true) this.$store.commit('paste', true)
this.$store.commit('recordSnapshot','paste') this.$store.commit('recordSnapshot', 'paste')
}, },
deleteComponent() { deleteComponent() {
this.deleteCurCondition() this.deleteCurCondition()
this.$store.commit('deleteComponent') this.$store.commit('deleteComponent')
this.$store.commit('recordSnapshot','deleteComponent') this.$store.commit('recordSnapshot', 'deleteComponent')
this.$store.commit('setCurComponent', { component: null, index: null }) this.$store.commit('setCurComponent', { component: null, index: null })
}, },
@ -106,22 +106,22 @@ export default {
upComponent() { upComponent() {
this.$store.commit('upComponent') this.$store.commit('upComponent')
this.$store.commit('recordSnapshot','upComponent') this.$store.commit('recordSnapshot', 'upComponent')
}, },
downComponent() { downComponent() {
this.$store.commit('downComponent') this.$store.commit('downComponent')
this.$store.commit('recordSnapshot','downComponent') this.$store.commit('recordSnapshot', 'downComponent')
}, },
topComponent() { topComponent() {
this.$store.commit('topComponent') this.$store.commit('topComponent')
this.$store.commit('recordSnapshot','topComponent') this.$store.commit('recordSnapshot', 'topComponent')
}, },
bottomComponent() { bottomComponent() {
this.$store.commit('bottomComponent') this.$store.commit('bottomComponent')
this.$store.commit('recordSnapshot','bottomComponent') this.$store.commit('recordSnapshot', 'bottomComponent')
}, },
linkageSetting() { linkageSetting() {
debugger debugger

View File

@ -46,12 +46,16 @@
:append-to-body="true" :append-to-body="true"
:visible.sync="dialogVisible" :visible.sync="dialogVisible"
width="30%" width="30%"
:show-close="false"
:close-on-click-modal="false"
center center
> >
<el-input <el-input
v-model="textarea" v-model="textarea"
type="textarea" type="textarea"
:rows="2" :rows="2"
maxlength="10"
show-word-limit
:placeholder="$t('dataset.input_content')" :placeholder="$t('dataset.input_content')"
/> />
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
@ -66,6 +70,8 @@
:visible.sync="viewDialogVisible" :visible.sync="viewDialogVisible"
width="20%" width="20%"
height="400px" height="400px"
:show-close="false"
:close-on-click-modal="false"
center center
> >
<div style="width: 100%;min-height: 250px; max-height: 300px; overflow-y: auto;"> <div style="width: 100%;min-height: 250px; max-height: 300px; overflow-y: auto;">
@ -251,8 +257,8 @@ export default {
} }
} }
} }
.de-tab-i { /* .de-tab-i {
transition: 0.3s; transition: 0.1s;
opacity: 0; opacity: 0;
transform: translateY(100%); transform: translateY(100%);
} }
@ -260,7 +266,7 @@ export default {
.de-tab-drop:hover .de-tab-i { .de-tab-drop:hover .de-tab-i {
opacity: 1; opacity: 1;
transform: translateY(0); transform: translateY(0);
} } */
.de-tab-content { .de-tab-content {
width: 100%; width: 100%;
height: 100%; height: 100%;

View File

@ -1257,6 +1257,7 @@ export default {
upComponent: 'Up One Level', upComponent: 'Up One Level',
downComponent: 'Down One Level', downComponent: 'Down One Level',
linkage_setting: 'Linkage Setting', linkage_setting: 'Linkage Setting',
add_tab: 'Add Tab',
open_aided_design: 'Open Component Aided Design', open_aided_design: 'Open Component Aided Design',
close_aided_design: 'Close Component Aided Design', close_aided_design: 'Close Component Aided Design',
open_style_design: 'Open Style Design', open_style_design: 'Open Style Design',

View File

@ -1260,6 +1260,7 @@ export default {
upComponent: '上移', upComponent: '上移',
downComponent: '下移', downComponent: '下移',
linkage_setting: '聯動設置', linkage_setting: '聯動設置',
add_tab: '新增Tab',
open_aided_design: '打開組件輔助設計', open_aided_design: '打開組件輔助設計',
close_aided_design: '關閉組件輔助設計', close_aided_design: '關閉組件輔助設計',
open_style_design: '打開樣式設計', open_style_design: '打開樣式設計',

View File

@ -1265,6 +1265,7 @@ export default {
upComponent: '上移', upComponent: '上移',
downComponent: '下移', downComponent: '下移',
linkage_setting: '联动设置', linkage_setting: '联动设置',
add_tab: '新增Tab',
open_aided_design: '打开组件辅助设计', open_aided_design: '打开组件辅助设计',
close_aided_design: '关闭组件辅助设计', close_aided_design: '关闭组件辅助设计',
open_style_design: '打开样式设计', open_style_design: '打开样式设计',

View File

@ -36,7 +36,6 @@
@check="checkChanged" @check="checkChanged"
@node-drag-end="dragEnd" @node-drag-end="dragEnd"
> >
<span slot-scope="{ node, data }" class="custom-tree-node"> <span slot-scope="{ node, data }" class="custom-tree-node">
<span> <span>
@ -84,7 +83,8 @@ export default {
defaultExpandedKeys: [], defaultExpandedKeys: [],
defaultProps: { defaultProps: {
children: 'children', children: 'children',
label: 'name' label: 'name',
disabled: 'disabled'
}, },
data: [], data: [],
showdetail: false, showdetail: false,
@ -114,7 +114,11 @@ export default {
const param = {} const param = {}
this.loading = true this.loading = true
tree(param).then(res => { tree(param).then(res => {
this.data = res.data const nodeDatas = res.data
if (this.selectModel) {
this.setParentDisable(nodeDatas)
}
this.data = nodeDatas
this.loading = false this.loading = false
}) })
}, },
@ -156,6 +160,16 @@ export default {
const nodes = this.$refs.templateTree.getCheckedNodes(true, false) const nodes = this.$refs.templateTree.getCheckedNodes(true, false)
return nodes return nodes
}, },
setParentDisable(nodes) {
nodes.forEach(node => {
if (node.type === 'group') {
node.disabled = true
}
if (node.children && node.children.length > 0) {
this.setParentDisable(node.children)
}
})
},
viewComponentInfo() { viewComponentInfo() {
let component let component
// //