iv-npm 1.1.68 → 1.1.71

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,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.1.68",
3
+ "version": "1.1.71",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -79,6 +79,11 @@ declare const API_OPTION: {
79
79
  option: any;
80
80
  baseUrl: string;
81
81
  };
82
+ getIVPaytypeSelector: {
83
+ url: string;
84
+ option: any;
85
+ baseUrl: string;
86
+ };
82
87
  };
83
88
  export declare const formatHTTP: (fetch: any) => Promise<any>;
84
89
  export declare const formatUrl: (base: string, api: string, params?: object) => string;
@@ -0,0 +1,19 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ detailVisible: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
+ [key: string]: any;
8
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:detailVisible" | "cancelHandle")[], "update:detailVisible" | "cancelHandle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
+ detailVisible: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ }>> & {
14
+ "onUpdate:detailVisible"?: ((...args: any[]) => any) | undefined;
15
+ onCancelHandle?: ((...args: any[]) => any) | undefined;
16
+ }, {
17
+ detailVisible: boolean;
18
+ }>;
19
+ export default _default;
@@ -0,0 +1,97 @@
1
+ /**
2
+ * 组件定义-------------------------------------
3
+ * */
4
+ declare const _default: import("vue").DefineComponent<{
5
+ value: {
6
+ type: null;
7
+ required: true;
8
+ };
9
+ params: {
10
+ type: ObjectConstructor;
11
+ required: false;
12
+ };
13
+ data: {
14
+ type: ObjectConstructor;
15
+ required: false;
16
+ };
17
+ formItemStyle: {
18
+ type: ObjectConstructor;
19
+ required: false;
20
+ };
21
+ labelCol: {
22
+ type: ObjectConstructor;
23
+ required: false;
24
+ default: () => {
25
+ span: number;
26
+ };
27
+ };
28
+ wrapperCol: {
29
+ type: ObjectConstructor;
30
+ required: false;
31
+ default: () => {
32
+ span: number;
33
+ };
34
+ };
35
+ isTitle: {
36
+ type: BooleanConstructor;
37
+ required: false;
38
+ default: boolean;
39
+ };
40
+ title: {
41
+ type: StringConstructor;
42
+ required: false;
43
+ default: string;
44
+ };
45
+ }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
46
+ [key: string]: any;
47
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
48
+ value: {
49
+ type: null;
50
+ required: true;
51
+ };
52
+ params: {
53
+ type: ObjectConstructor;
54
+ required: false;
55
+ };
56
+ data: {
57
+ type: ObjectConstructor;
58
+ required: false;
59
+ };
60
+ formItemStyle: {
61
+ type: ObjectConstructor;
62
+ required: false;
63
+ };
64
+ labelCol: {
65
+ type: ObjectConstructor;
66
+ required: false;
67
+ default: () => {
68
+ span: number;
69
+ };
70
+ };
71
+ wrapperCol: {
72
+ type: ObjectConstructor;
73
+ required: false;
74
+ default: () => {
75
+ span: number;
76
+ };
77
+ };
78
+ isTitle: {
79
+ type: BooleanConstructor;
80
+ required: false;
81
+ default: boolean;
82
+ };
83
+ title: {
84
+ type: StringConstructor;
85
+ required: false;
86
+ default: string;
87
+ };
88
+ }>> & {
89
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
90
+ onChange?: ((...args: any[]) => any) | undefined;
91
+ }, {
92
+ labelCol: Record<string, any>;
93
+ wrapperCol: Record<string, any>;
94
+ isTitle: boolean;
95
+ title: string;
96
+ }>;
97
+ export default _default;
@@ -14,7 +14,8 @@ import IVOuterContractSelector from "./component/IVOuterContractSelector.vue";
14
14
  import IVFileUpload from "./component/IVFileUpload.vue";
15
15
  import IVTimeSelector from "./component/IVTimeSelector.vue";
16
16
  import IVClientSelector from "./component/IVClientSelector.vue";
17
+ import IVPaytypeSelector from "./component/IVPaytypeSelector.vue";
17
18
  import IVUserSelector from "./component/IVUserSelector.vue";
18
19
  import IVVendorSelector from "./component/IVVendorSelector.vue";
19
20
  import IVMaterialSelector from "./component/IVMaterialSelector.vue";
20
- export { IVOrgDropdown, IVProdBaseDropdown, IVLineDropdown, IVSetofbookDropdown, IVPostDropdown, IVManagDropdown, IVRateDropdown, IVUnitDropdown, IVMaterialTypeDropdown, IVProjectSelector, IVMainContractSelector, IVInnerContractSelector, IVOuterContractSelector, IVFileUpload, IVTimeSelector, IVClientSelector, IVUserSelector, IVVendorSelector, IVMaterialSelector, };
21
+ export { IVOrgDropdown, IVProdBaseDropdown, IVLineDropdown, IVSetofbookDropdown, IVPostDropdown, IVManagDropdown, IVRateDropdown, IVUnitDropdown, IVMaterialTypeDropdown, IVProjectSelector, IVMainContractSelector, IVInnerContractSelector, IVOuterContractSelector, IVFileUpload, IVTimeSelector, IVClientSelector, IVPaytypeSelector, IVUserSelector, IVVendorSelector, IVMaterialSelector, };
@@ -1 +1 @@
1
- .tableControl[data-v-c0e90666]{color:#006ab2;position:absolute;right:0;top:-42px}.tableControl[data-v-c0e90666] .setting[data-v-c0e90666]{margin-top:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-popover-inner-content{padding:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-menu-vertical{border:none}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-divider-horizontal{margin:2px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-checkbox-group-item{display:flex}.tableControl[data-v-c0e90666] .anticon[data-v-c0e90666]{margin-right:6px}.ant-upload-select-picture-card i[data-v-3f5c8a23]{color:#999;font-size:32px}.ant-upload-picture-card-wrapper[data-v-3f5c8a23]{display:flex}.ant-upload-select-picture-card .ant-upload-text[data-v-3f5c8a23]{color:#006ab2;margin-top:14px}.upload-list-inline[data-v-3f5c8a23] .ant-upload-list-item{float:left;margin-right:8px;width:100px}.upload-list-inline [class*=-upload-list-rtl][data-v-3f5c8a23] .ant-upload-list-item{float:right}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container{height:50px;width:50px}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23]{border:0;height:100%;padding:0;width:100%}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23] .ant-upload-list-item-info[data-v-3f5c8a23]{height:100%;width:100%}.Mrp-time[data-v-5f0fe252] .button[data-v-5f0fe252]{height:30px;width:48px}.Mrp-time[data-v-5f0fe252] .active[data-v-5f0fe252]{background:#bd9e55}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:first-child{border-radius:4px 0 0 4px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:last-child{border-radius:0 4px 4px 0}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-range-editor.el-input__inner{height:35px;width:200px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-date-editor .el-range-input{color:#333;font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper{border:1px solid #006ab2;color:#006ab2;font-size:12px;height:35px;line-height:35px;padding:0;text-align:center;width:52px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked{background:#bd9e55;border:1px solid #bd9e55;color:#fff}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child{border-color:#bd9e55}.Mrp-time[data-v-5f0fe252] .picker[data-v-5f0fe252]{margin-left:10px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-input>input{font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-range-separator{margin-bottom:5px}body #IVModal .detail-class{top:-50px}body #IVModal .module-class .ant-modal-header{padding:0}body #IVModal .module-class .ant-modal-body{padding:100px 0 100px 100px;position:relative}body #IVModal .detail-class .ant-modal-body{overflow:auto;padding:0 0 30px}body #IVModal .module-class.not-padding .ant-modal-body{padding:0;position:relative}body #IVModal .module-class.pwd .ant-modal-body{padding:100px 0;position:relative}body #IVModal .ant-scrolling-effect{width:100%!important}body #IVModal .module-class.modal-components .ant-modal{height:40%;left:0;margin-left:5%;margin-right:5%;top:5%;width:auto!important}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content{height:100%}body #IVModal .module-class .ant-modal-content{border-radius:10px;box-sizing:border-box;overflow:hidden}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body{height:100%;overflow-y:auto}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar{height:20px;width:15px}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-track{background:#f7f4ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb{background:#e0cbcb;border:3px solid #f6f7ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb:hover{background:#c0a0b9}body #IVUserSelector .pagination{position:static}body #IVUserSelector .ant-btn{height:35px}body #IVUserSelector [type=button],body #IVUserSelector button{border-color:#006ab2}body #IVUserSelector .button-color-sunset{border-color:#006ab2!important;border-radius:4px;margin-right:15px}body #top{position:fixed;top:65px;z-index:999}body #IVTable .active{background-color:#bd9e55;color:#fff;font-size:13px}body #IVTable :deep(.ant-btn-primary){background:#006ab2}body #IVTable :deep(.ant-image){margin:0 2px}body #IVTable .center-center{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}body #IVTable .table-cell{border:1px solid #d9d9d9;color:#333;font-size:13px;font-weight:400;height:60px;padding:5px;text-align:center;word-break:break-all}body #IVTable .table-footer{border:1px solid #d9d9d9;display:table-footer-group;height:200px;position:relative;width:100%}body #IVTable .table-footer .centent{color:rgba(0,0,0,.25);font-size:14px;left:50%;position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}body #IVTable table{border-collapse:collapse}body #IVTable .pagination{background-color:#fff;bottom:-80px;height:45px;position:fixed;z-index:999}body #IVTable .mrpTable{margin-bottom:80px;position:relative}
1
+ .tableControl[data-v-c0e90666]{color:#006ab2;position:absolute;right:0;top:-42px}.tableControl[data-v-c0e90666] .setting[data-v-c0e90666]{margin-top:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-popover-inner-content{padding:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-menu-vertical{border:none}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-divider-horizontal{margin:2px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-checkbox-group-item{display:flex}.tableControl[data-v-c0e90666] .anticon[data-v-c0e90666]{margin-right:6px}.Altimeter[data-v-44290c60]{display:flex;justify-content:center}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60]{display:flex;flex-direction:column;flex-wrap:wrap;height:80vh}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60]{align-items:center;display:flex;margin-top:10px}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60] span[data-v-44290c60]{margin-left:10px}.ant-upload-select-picture-card i[data-v-3f5c8a23]{color:#999;font-size:32px}.ant-upload-picture-card-wrapper[data-v-3f5c8a23]{display:flex}.ant-upload-select-picture-card .ant-upload-text[data-v-3f5c8a23]{color:#006ab2;margin-top:14px}.upload-list-inline[data-v-3f5c8a23] .ant-upload-list-item{float:left;margin-right:8px;width:100px}.upload-list-inline [class*=-upload-list-rtl][data-v-3f5c8a23] .ant-upload-list-item{float:right}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container{height:50px;width:50px}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23]{border:0;height:100%;padding:0;width:100%}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23] .ant-upload-list-item-info[data-v-3f5c8a23]{height:100%;width:100%}.Mrp-time[data-v-5f0fe252] .button[data-v-5f0fe252]{height:30px;width:48px}.Mrp-time[data-v-5f0fe252] .active[data-v-5f0fe252]{background:#bd9e55}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:first-child{border-radius:4px 0 0 4px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:last-child{border-radius:0 4px 4px 0}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-range-editor.el-input__inner{height:35px;width:200px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-date-editor .el-range-input{color:#333;font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper{border:1px solid #006ab2;color:#006ab2;font-size:12px;height:35px;line-height:35px;padding:0;text-align:center;width:52px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked{background:#bd9e55;border:1px solid #bd9e55;color:#fff}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child{border-color:#bd9e55}.Mrp-time[data-v-5f0fe252] .picker[data-v-5f0fe252]{margin-left:10px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-input>input{font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-range-separator{margin-bottom:5px}body #IVModal .detail-class{top:-50px}body #IVModal .module-class .ant-modal-header{padding:0}body #IVModal .module-class .ant-modal-body{padding:100px 0 100px 100px;position:relative}body #IVModal .detail-class .ant-modal-body{overflow:auto;padding:0 0 30px}body #IVModal .module-class.not-padding .ant-modal-body{padding:0;position:relative}body #IVModal .module-class.pwd .ant-modal-body{padding:100px 0;position:relative}body #IVModal .ant-scrolling-effect{width:100%!important}body #IVModal .module-class.modal-components .ant-modal{height:40%;left:0;margin-left:5%;margin-right:5%;top:5%;width:auto!important}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content{height:100%}body #IVModal .module-class .ant-modal-content{border-radius:10px;box-sizing:border-box;overflow:hidden}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body{height:100%;overflow-y:auto}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar{height:20px;width:15px}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-track{background:#f7f4ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb{background:#e0cbcb;border:3px solid #f6f7ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb:hover{background:#c0a0b9}body #IVUserSelector .pagination{position:static}body #IVUserSelector .ant-btn{height:35px}body #IVUserSelector [type=button],body #IVUserSelector button{border-color:#006ab2}body #IVUserSelector .button-color-sunset{border-color:#006ab2!important;border-radius:4px;margin-right:15px}body #top{position:fixed;top:65px;z-index:999}body #IVTable .active{background-color:#bd9e55;color:#fff;font-size:13px}body #IVTable :deep(.ant-btn-primary){background:#006ab2}body #IVTable :deep(.ant-image){margin:0 2px}body #IVTable .center-center{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}body #IVTable .table-cell{border:1px solid #d9d9d9;color:#333;font-size:13px;font-weight:400;height:60px;padding:5px;text-align:center;word-break:break-all}body #IVTable .table-footer{border:1px solid #d9d9d9;display:table-footer-group;height:200px;position:relative;width:100%}body #IVTable .table-footer .centent{color:rgba(0,0,0,.25);font-size:14px;left:50%;position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}body #IVTable table{border-collapse:collapse}body #IVTable .pagination{background-color:#fff;bottom:-80px;height:45px;position:fixed;z-index:999}body #IVTable .mrpTable{margin-bottom:80px;position:relative}