-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImageMark.vue
105 lines (102 loc) · 2.13 KB
/
ImageMark.vue
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
<template>
<div class="image-mark">
<img :src="imageSrc" alt="" @click="handleBoardClick" />
<ul class="point-list">
<li
v-for="point in pointList"
:key="point.id"
:class="point.class"
:style="{
top: point.y + '%',
left: point.x + '%',
...pointStyle,
backgroundColor: point.color,
}"
@click="handlePointClick(point)"
>
{{ point.id }}
</li>
</ul>
</div>
</template>
<script>
export default {
name: "ImageMark",
props: {
pointList: {
type: Array,
required: true,
},
pointStyle: {
type: Object,
default() {
return {};
},
},
imageSrc: {
type: String,
required: true,
},
},
data() {
return {};
},
methods: {
handleBoardClick(e) {
let point = {};
if (typeof uni == "undefined") {
point = {
x: (e.layerX / e.target.width) * 100,
y: (e.layerY / e.target.height) * 100,
id: this.pointList.length + 1,
};
this.$emit("add", point);
} else {
const query = uni.createSelectorQuery().in(this);
query
.select(".image-mark")
.boundingClientRect((el) => {
point = {
x: ((e.detail.x - el.left) / el.width) * 100,
y: ((e.detail.y - el.top) / el.height) * 100,
id: this.pointList.length + 1,
};
this.$emit("add", point);
})
.exec();
}
},
handlePointClick(point) {
this.$emit("pointClick", point);
},
},
};
</script>
<style lang="less">
.image-mark {
position: relative;
width: 100%;
img {
width: 100%;
}
.point-list {
list-style: none;
margin: 0;
li {
user-select: NONE;
position: absolute;
/* prettier-ignore */
width: 26PX;
/* prettier-ignore */
height: 26PX;
/* prettier-ignore */
line-height: 26PX;
background-color: #d7d7d7;
border-radius: 50%;
color: #fff;
text-align: center;
transform: translate(-50%, -50%);
}
}
}
</style>