contentMenu.vue
3.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<template>
<div v-show="visible" class="contentmenu" :style="styleObj">
<div class="contentmenu__item" @click="deleteLayer">
<i class="iconfont iconguanbi"></i> 删除图层
</div>
<div class="contentmenu__item" @click="copyLayer">
<i class="iconfont iconfuzhi1"></i> 复制图层
</div>
<div class="contentmenu__item" @click="setAlignment">
<i class="iconfont iconzidianxiang"></i> 左对齐
</div>
<div class="contentmenu__item" @click="setTopAlignment">
<i class="iconfont iconzidianxiang"></i> 水平对齐
</div>
<div class="contentmenu__item" @click="setlowLayer">
<i class="iconfont iconleft-copy"></i> 置底图层
</div>
<div class="contentmenu__item" @click="istopLayer">
<i class="iconfont iconjinlingyingcaiwangtubiao01"></i> 置顶图层
</div>
<div class="contentmenu__item" @click="moveupLayer">
<i class="iconfont iconjinlingyingcaiwangtubiao01"></i> 上移一层
</div>
<div class="contentmenu__item" @click="movedownLayer">
<i class="iconfont iconleft-copy"></i> 下移一层
</div>
<div class="contentmenu__item" @click="lockLayer">
<i class="iconfont iconchufaqipeizhi-hui"></i> 锁定图层
</div>
<div class="contentmenu__item" @click="noLockLayer">
<i class="iconfont iconfuzhi"></i> 解除锁定
</div>
<div class="contentmenu__item" @click="addGroupLayer">
<i class="iconfont iconbaocun"></i> 添加分组
</div>
<div class="contentmenu__item" @click="delGroupLayer">
<i class="iconfont iconzhankai"></i> 移除分组
</div>
<div class="contentmenu__item" @click="copylayerAll">
<i class="iconfont iconzhankai"></i> 复制全部
</div>
</div>
</template>
<script>
export default {
props: {
styleObj: Object,
visible: Boolean,
},
data() {
return {};
},
watch: {
visible(value) {
if (value) {
document.body.addEventListener("click", this.closeMenu);
} else {
document.body.removeEventListener("click", this.closeMenu);
}
},
},
methods: {
closeMenu() {
this.$emit("update:visible", false);
},
deleteLayer() {
this.$confirm("是否删除所选图层?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.$emit("deletelayer");
this.$message({
type: "success",
message: "删除成功!",
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
lockLayer() {
this.$emit("lockLayer");
},
setAlignment() {
this.$emit("setAlignment");
},
noLockLayer() {
this.$emit("noLockLayer");
},
//添加分组
addGroupLayer() {
this.$emit("addGroupLayer");
},
//移除分组
delGroupLayer() {
this.$emit("delGroupLayer");
},
//复制全部
copylayerAll() {
this.$emit("copylayerAll");
},
copyLayer() {
this.$emit("copylayer");
},
istopLayer() {
this.$emit("istopLayer");
},
setlowLayer() {
this.$emit("setlowLayer");
},
moveupLayer() {
this.$emit("moveupLayer");
},
movedownLayer() {
this.$emit("movedownLayer");
},
setTopAlignment() {
this.$emit("setTopAlignment");
},
},
};
</script>
<style lang="scss" scoped>
.contentmenu {
width: 160px;
position: fixed;
z-index: 99999;
list-style: none;
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 0;
background: #27343e;
color: #bcc9d4;
.contentmenu__item {
z-index: 10000;
list-style: none;
padding: 8px 12px;
cursor: pointer;
position: relative;
font-size: 12px;
}
.iconfont {
font-size: 12px;
}
}
</style>