vg-print 1.0.316 → 1.0.318

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/README.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  一个开箱即用的打印设计器组件库(Vue 3)。现在聚焦于单一组件 `FullDesigner`,同时暴露底层 `hiprint` 能力与客户端直连(`hiwebSocket`)配置,便于快速集成模板设计、预览、浏览器打印、导出 PDF/图片、直接打印等功能。
4
4
 
5
+ 您可以直接安装引入体验功能.
6
+ 没有域名限制,无网可用. 提供一对一技术支持.
7
+ npm搜索vg-print.
8
+ 授权或购买源码: 联系我加 QQ: 984239686
9
+
10
+
11
+
5
12
  ## 特性
6
13
 
7
14
  - 全功能页面组件 `FullDesigner`,直接使用,无需拼装子组件
@@ -163,7 +163,7 @@
163
163
 
164
164
  .hiprint-printElement-tableTarget, .hiprint-printElement-tableTarget tr, .hiprint-printElement-tableTarget td {
165
165
  border-color: rgb(0,0,0);
166
- border-style: none;
166
+ /*border-style: none;*/
167
167
  /*border: 1px solid rgb(0,0,0);*/
168
168
  font-weight: normal;
169
169
  direction: ltr;
@@ -185,6 +185,21 @@
185
185
  height: 18pt;
186
186
  }
187
187
 
188
+ /* 边框样式(用于打印时保持边框) */
189
+ table.hiprint-printElement-tableTarget { width: 100%; }
190
+ .hiprint-printElement-tableTarget-border-all { border: 1px solid; }
191
+ .hiprint-printElement-tableTarget-border-none { border: 0px solid; }
192
+ .hiprint-printElement-tableTarget-border-lr { border-left: 1px solid; border-right: 1px solid; }
193
+ .hiprint-printElement-tableTarget-border-left { border-left: 1px solid; }
194
+ .hiprint-printElement-tableTarget-border-right { border-right: 1px solid; }
195
+ .hiprint-printElement-tableTarget-border-tb { border-top: 1px solid; border-bottom: 1px solid; }
196
+ .hiprint-printElement-tableTarget-border-top { border-top: 1px solid; }
197
+ .hiprint-printElement-tableTarget-border-bottom { border-bottom: 1px solid; }
198
+ .hiprint-printElement-tableTarget-border-td-none td { border: 0px solid; }
199
+ .hiprint-printElement-tableTarget-border-td-all td:not(:nth-last-child(-n+2)) { border-right: 1px solid; }
200
+ .hiprint-printElement-tableTarget-border-td-all td { border-left: 1px solid; }
201
+ .hiprint-printElement-tableTarget-border-td-all td:last-child:first-child { border-left: none; }
202
+
188
203
  .hiprint-printPaper .hiprint-paperNumber {
189
204
  font-size: 9pt;
190
205
  }
@@ -279,4 +294,4 @@
279
294
  .hiprint-gridColumnsFooter {
280
295
  text-align: left;
281
296
  clear: both;
282
- }
297
+ }