print-center-vue2 1.2.2 → 1.2.10
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 +59 -0
- package/favicon.ico +0 -0
- package/index.js +6146 -8
- package/js/jspdf/jspdf.umd.min.js +722 -659
- package/package.json +1 -1
- package/print-center-vue2-1.2.10.tgz +0 -0
- package/style.css +1 -0
- package/print-center-vue2-1.2.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
## 宝威打印中心
|
|
2
|
+
### 发布步骤
|
|
3
|
+
1. 在项目中打包并
|
|
4
|
+
2. 发布
|
|
5
|
+
```
|
|
6
|
+
# 查看当前镜像源
|
|
7
|
+
npm get registry
|
|
8
|
+
|
|
9
|
+
# 如果显示的不是 https://registry.npmjs.org/,则执行以下命令切换
|
|
10
|
+
npm config set registry https://registry.npmjs.org/
|
|
11
|
+
|
|
12
|
+
# 打包npm包
|
|
13
|
+
使用npm的pack命令来创建一个tarball(压缩包):
|
|
14
|
+
npm pack
|
|
15
|
+
|
|
16
|
+
# 上传npm包到npm仓库
|
|
17
|
+
登录npm仓库,然后使用npm publish命令来发布你的包:
|
|
18
|
+
npm login
|
|
19
|
+
npm publish
|
|
20
|
+
|
|
21
|
+
```
|
|
2
22
|
|
|
3
23
|
### 快速开始
|
|
4
24
|
|
|
@@ -197,3 +217,42 @@ Vue.prototype.jspdf = jspdf
|
|
|
197
217
|
|
|
198
218
|
1. 添加折、柱图形组件。
|
|
199
219
|
2. 添加饼图、环图组件。
|
|
220
|
+
|
|
221
|
+
### v1.2.2(vue3)
|
|
222
|
+
|
|
223
|
+
1. 修复在配置界面弹出预览界面时,条码、二维码组件无法渲染的问题。
|
|
224
|
+
|
|
225
|
+
### v1.2.3(vue3)
|
|
226
|
+
|
|
227
|
+
1. 界面样式微调
|
|
228
|
+
|
|
229
|
+
### v1.2.4(vue3)
|
|
230
|
+
|
|
231
|
+
1. 清除多余的console.log。
|
|
232
|
+
2. 修复在配置界面弹出预览界面时,自定义组件无法渲染的问题。
|
|
233
|
+
|
|
234
|
+
### v1.2.5(vue3)
|
|
235
|
+
|
|
236
|
+
1. 模版配置添加是否分页打印开关。
|
|
237
|
+
|
|
238
|
+
### v1.2.6(vue3)
|
|
239
|
+
|
|
240
|
+
1. 配置数据js脚本格式化bug修复。
|
|
241
|
+
2. 描述列表部分配置项双向绑定失效修复。
|
|
242
|
+
3. 打印初始化分页计算错误修复。
|
|
243
|
+
|
|
244
|
+
### v1.2.7(vue3)
|
|
245
|
+
|
|
246
|
+
1. 描述列表分页打印label宽度计算错误修复。
|
|
247
|
+
2. 条码组件添加边距配置。
|
|
248
|
+
3. 文本组件添加文本左/右边距配置。
|
|
249
|
+
|
|
250
|
+
### v1.2.8(vue3) 未发布
|
|
251
|
+
|
|
252
|
+
1. 表格组件单元格添加图片、二维码、条码展示功能。
|
|
253
|
+
2. 描述列表组件@2.0版本开发,自编写组件替换element-plus的描述列表组件,并且添加图片、二维码、条码展示功能。
|
|
254
|
+
|
|
255
|
+
### v1.2.9(vue2)
|
|
256
|
+
|
|
257
|
+
1. 以上vue3版本更新内容同步更新。
|
|
258
|
+
2. 预览界面国际化;
|
package/favicon.ico
CHANGED
|
Binary file
|