@toolspack/ttd-common 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -468,12 +468,12 @@ export default {
|
|
|
468
468
|
try {
|
|
469
469
|
let lacotionX = ''; let lacotionY = '';
|
|
470
470
|
if (item.height) {
|
|
471
|
-
lacotionX = Number(item.X)
|
|
471
|
+
lacotionX = Number(item.X)
|
|
472
472
|
lacotionY = Number(item.height) - Number(item.Y) - 47
|
|
473
473
|
} else {
|
|
474
474
|
// 于静 的签章标签,是未经处理的(无需Y轴颠倒),所以处理方式,和江湖的不一样,
|
|
475
|
-
lacotionX = Number(item.X)
|
|
476
|
-
lacotionY = Number(item.Y)
|
|
475
|
+
lacotionX = Number(item.X)
|
|
476
|
+
lacotionY = Number(item.Y)
|
|
477
477
|
}
|
|
478
478
|
|
|
479
479
|
console.log(` 参数 pageIndex = ${ item.pageIndex} x = ${ lacotionX} Y = ${ lacotionY}`)
|
|
@@ -54,9 +54,9 @@ export default {
|
|
|
54
54
|
.label-done-area {
|
|
55
55
|
.label-operate-menu{
|
|
56
56
|
.el-submenu__title {
|
|
57
|
-
font-size:
|
|
57
|
+
font-size: 16px;
|
|
58
58
|
color: #222 !important;
|
|
59
|
-
border-bottom
|
|
59
|
+
border-bottom-color:#dcdde3;
|
|
60
60
|
}
|
|
61
61
|
.el-menu-item{
|
|
62
62
|
height: 40px;
|
|
@@ -64,6 +64,9 @@ export default {
|
|
|
64
64
|
}
|
|
65
65
|
.el-menu.el-menu--inline {
|
|
66
66
|
border-bottom: 1px solid #dcdde3;
|
|
67
|
+
&:last-child{
|
|
68
|
+
border-bottom:0 none
|
|
69
|
+
}
|
|
67
70
|
}
|
|
68
71
|
.title-con.el-dropdown {
|
|
69
72
|
width: 280px;
|
|
@@ -93,7 +96,7 @@ export default {
|
|
|
93
96
|
cursor: pointer;
|
|
94
97
|
padding: 0;
|
|
95
98
|
text-align: left;
|
|
96
|
-
font-size:
|
|
99
|
+
font-size: 14px;
|
|
97
100
|
}
|
|
98
101
|
}
|
|
99
102
|
.label-done-area {
|