yh-hiprint 2.6.3 → 2.6.4
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/HiprintDesigner.vue +5 -0
- package/hiprintPreview.vue +4 -1
- package/package.json +1 -1
package/HiprintDesigner.vue
CHANGED
|
@@ -989,6 +989,8 @@ onMounted(async () => {
|
|
|
989
989
|
});
|
|
990
990
|
</script>
|
|
991
991
|
<style lang="scss">
|
|
992
|
+
@use './libs/css/hiprint.css';
|
|
993
|
+
@use './libs//css/print-lock.css';
|
|
992
994
|
.hiprint-designer {
|
|
993
995
|
width: calc(100% + 32px);
|
|
994
996
|
height: calc(100% - 30px);
|
|
@@ -1079,6 +1081,9 @@ onMounted(async () => {
|
|
|
1079
1081
|
overflow: hidden;
|
|
1080
1082
|
.el-scrollbar__view {
|
|
1081
1083
|
padding: 20px 10px 40px 20px;
|
|
1084
|
+
#hiprint-printTemplate {
|
|
1085
|
+
position: relative;
|
|
1086
|
+
}
|
|
1082
1087
|
}
|
|
1083
1088
|
}
|
|
1084
1089
|
&_right {
|
package/hiprintPreview.vue
CHANGED