文件同步管理页面
This commit is contained in:
parent
d3fcd35579
commit
048c786d67
@ -63,7 +63,10 @@ const contextMenuVisible = ref(false)
|
|||||||
const contextMenuPosition = ref({ x: 0, y: 0 })
|
const contextMenuPosition = ref({ x: 0, y: 0 })
|
||||||
const currentNode = ref<any>(null)
|
const currentNode = ref<any>(null)
|
||||||
//文件差异性对比
|
//文件差异性对比
|
||||||
const differential = ref(true)
|
const differential = ref(false)
|
||||||
|
function diffFile(){
|
||||||
|
differential.value = true
|
||||||
|
}
|
||||||
function diffClose() {
|
function diffClose() {
|
||||||
differential.value = false
|
differential.value = false
|
||||||
}
|
}
|
||||||
@ -233,7 +236,7 @@ const Three3dPreview = defineAsyncComponent({
|
|||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
<section class="silderRight">
|
<section class="silderRight">
|
||||||
<div class="tree_button"><el-button type="primary">文件差异性对比</el-button></div>
|
<div class="tree_button"><el-button type="primary" @click="diffFile()" >文件差异性对比</el-button></div>
|
||||||
<div class="tree_box">
|
<div class="tree_box">
|
||||||
<div class="tree_left">
|
<div class="tree_left">
|
||||||
<div class="tree_title">工作空间:</div>
|
<div class="tree_title">工作空间:</div>
|
||||||
@ -487,9 +490,9 @@ const Three3dPreview = defineAsyncComponent({
|
|||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
|
||||||
.tree_button {
|
.tree_button {
|
||||||
display: flex;
|
// display: flex;
|
||||||
align-items: center;
|
// align-items: center;
|
||||||
justify-content: flex-end;
|
// justify-content: flex-end;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user