doctor-admin-components 1.0.14-beta.32 → 1.0.14-beta.33

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.14-beta.32",
4
+ "version": "1.0.14-beta.33",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
package/packages/index.js CHANGED
@@ -54,7 +54,9 @@ import {
54
54
  CompanyBanks,
55
55
  VDistpicker,
56
56
  ContractFileDragUpload,
57
- FileShow
57
+ FileShow,
58
+ ShipmentPurchaseAmount
59
+
58
60
  } from "./src";
59
61
  // 组件列表
60
62
  const components = [
@@ -68,7 +70,8 @@ const components = [
68
70
  CompanyBanks,
69
71
  VDistpicker,
70
72
  ContractFileDragUpload,
71
- FileShow
73
+ FileShow,
74
+ ShipmentPurchaseAmount
72
75
  ];
73
76
 
74
77
  // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,那么所有的组件都会被注册
@@ -141,5 +144,6 @@ export default {
141
144
  CompanyBanks,
142
145
  VDistpicker,
143
146
  ContractFileDragUpload,
144
- FileShow
147
+ FileShow,
148
+ ShipmentPurchaseAmount
145
149
  };
@@ -2,7 +2,7 @@
2
2
  * @Author: error: git config user.name && git config user.email & please set dead value or install git
3
3
  * @Date: 2022-07-25 11:24:53
4
4
  * @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
5
- * @LastEditTime: 2024-07-24 12:09:33
5
+ * @LastEditTime: 2024-08-23 16:19:29
6
6
  * @FilePath: /zpw-com-test/src/lib-components/index.js
7
7
  * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8
8
  */
@@ -23,6 +23,7 @@ import CompanyBanks from "./views/biz/contractTracing/companyBanks.vue";
23
23
  import VDistpicker from "./views/components/RegionPicker/Distpicker.vue";
24
24
  import ContractFileDragUpload from '../src/components/FileUpload/contract-drag-new.vue';
25
25
  import FileShow from '../src/views/biz/bizFileInfo/fileShow.vue'
26
+ import ShipmentPurchaseAmount from '../src/views/biz/contractTracing/shipmentPurchaseAmount.vue'
26
27
 
27
28
  // 为组件提供 install 安装方法,供按需引入
28
29
 
@@ -65,6 +66,11 @@ FileShow.install = function (Vue) {
65
66
  Vue.component(FileShow.name, FileShow);
66
67
  };
67
68
 
69
+ ShipmentPurchaseAmount.install = function (Vue) {
70
+ Vue.component(ShipmentPurchaseAmount.name, ShipmentPurchaseAmount);
71
+ };
72
+
73
+
68
74
  // 导出组件
69
75
  export {
70
76
  EditBill,
@@ -76,5 +82,6 @@ export {
76
82
  CompanyBanks,
77
83
  VDistpicker,
78
84
  ContractFileDragUpload,
79
- FileShow
85
+ FileShow,
86
+ ShipmentPurchaseAmount
80
87
  };