@toolspack/ttd-common 0.2.6 → 0.2.9
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/lib/demo.html +8 -0
- package/lib/fonts/iconfont.1a79c8ea.eot +0 -0
- package/lib/fonts/iconfont.3303ffae.ttf +0 -0
- package/lib/img/iconfont.18b11516.svg +65 -0
- package/lib/ttd-common.common.js +20179 -0
- package/lib/ttd-common.common.vendors~pdfjsWorker.js +442 -0
- package/lib/ttd-common.umd.js +20189 -0
- package/lib/ttd-common.umd.min.js +32 -0
- package/lib/ttd-common.umd.min.vendors~pdfjsWorker.js +23 -0
- package/lib/ttd-common.umd.vendors~pdfjsWorker.js +442 -0
- package/package.json +1 -1
- package/src/packages/cfca/CfcaPdf.vue +1 -0
- package/src/packages/label-list/LabelOperate.vue +6 -3
- package/src/packages/make-label/LabelMake.vue +2 -2
package/package.json
CHANGED
|
@@ -466,6 +466,7 @@ export default {
|
|
|
466
466
|
console.log(`-signFileKeyImage--certSN-${ certSN}`, item)
|
|
467
467
|
|
|
468
468
|
try {
|
|
469
|
+
// 套印是 已左下角为原定, ukey 签署是以左上角未原点,并且,图像是图像的中心点 140/1.5/2 = 47
|
|
469
470
|
let lacotionX = ''; let lacotionY = '';
|
|
470
471
|
if (item.height) {
|
|
471
472
|
lacotionX = Number(item.X) + 47
|
|
@@ -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 {
|
|
@@ -114,7 +114,7 @@ export default {
|
|
|
114
114
|
// 此动作用于点击其他区域时清除标签内动态生成的删除按钮
|
|
115
115
|
const vm = this;
|
|
116
116
|
document.onclick = () => {
|
|
117
|
-
vm.removeElementsByClass('
|
|
117
|
+
vm.removeElementsByClass('mouse-right-el');
|
|
118
118
|
};
|
|
119
119
|
const box = this.$refs.labelView
|
|
120
120
|
const me = this
|
|
@@ -400,7 +400,7 @@ export default {
|
|
|
400
400
|
if (!this.isclose && !this.isset) {
|
|
401
401
|
return;
|
|
402
402
|
}
|
|
403
|
-
this.removeElementsByClass('
|
|
403
|
+
this.removeElementsByClass('mouse-right-el');
|
|
404
404
|
const x = e.offsetX;
|
|
405
405
|
const y = e.offsetY;
|
|
406
406
|
const oEm = document.createElement('ul');
|