iv-npm 1.5.50 → 1.5.54
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 +1 -1
- package/packages/shared/dist/utils/index.d.ts +1 -1
- package/packages/shared/dist/utils/index.mjs +5 -1
- package/packages/ui/dist/api/api.config.d.ts +10 -0
- package/packages/ui/dist/business-ui/component/IVApproval.d.ts +25 -0
- package/packages/ui/dist/business-ui/index.d.ts +2 -1
- package/packages/ui/dist/index.cjs.css +1 -1
- package/packages/ui/dist/index.cjs.js +2 -2
- package/packages/ui/dist/index.cjs.js.map +1 -1
- package/packages/ui/dist/index.d.ts +2 -2
- package/packages/ui/dist/index.esm.css +1 -1
- package/packages/ui/dist/index.esm.js +2 -2
- package/packages/ui/dist/index.esm.js.map +1 -1
- package/packages/ui/dist/index.umd.css +1 -1
- package/packages/ui/dist/index.umd.js +2 -2
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +68 -64
- package/pnpm-lock.yaml +5768 -5741
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ declare function buildURL(url: string, params: any): string;
|
|
|
48
48
|
|
|
49
49
|
declare function apiConfiger(config: any): any;
|
|
50
50
|
|
|
51
|
-
declare type HostKey = "BASE_URL" | "MRP_URL" | "MRP2_URL" | "ASSET_URL" | "ASSETS_URL" | "GATEWAY_URL" | "SFM_URL";
|
|
51
|
+
declare type HostKey = "BASE_URL" | "MRP_URL" | "MRP2_URL" | "ASSET_URL" | "ASSETS_URL" | "GATEWAY_URL" | "SFM_URL" | "CCFLOW_URL";
|
|
52
52
|
declare function hostConfiger(key: HostKey): string;
|
|
53
53
|
|
|
54
54
|
declare type formatType = {
|
|
@@ -157,7 +157,8 @@ function hostConfiger(key) {
|
|
|
157
157
|
ASSET_URL: "https://gateway.nacho.cn",
|
|
158
158
|
ASSETS_URL: "https://assets.nacho.cn",
|
|
159
159
|
GATEWAY_URL: "https://gateway.nacho.cn",
|
|
160
|
-
SFM_URL: "https://sfm.nacho.cn"
|
|
160
|
+
SFM_URL: "https://sfm.nacho.cn",
|
|
161
|
+
CCFLOW_URL: "https://ccflow.nacho.cn/"
|
|
161
162
|
};
|
|
162
163
|
try {
|
|
163
164
|
if (process.env.VITE_APP_BASE_URL)
|
|
@@ -232,6 +233,9 @@ function hostConfiger(key) {
|
|
|
232
233
|
case "SFM_URL":
|
|
233
234
|
preString = "sfm";
|
|
234
235
|
break;
|
|
236
|
+
case "CCFLOW_URL":
|
|
237
|
+
preString = "ccflow";
|
|
238
|
+
break;
|
|
235
239
|
default:
|
|
236
240
|
throw new Error("no matching arguments\uFF01");
|
|
237
241
|
}
|
|
@@ -239,6 +239,16 @@ declare const API_OPTION: {
|
|
|
239
239
|
};
|
|
240
240
|
baseUrl: string;
|
|
241
241
|
};
|
|
242
|
+
sendApproval: {
|
|
243
|
+
url: string;
|
|
244
|
+
option: {
|
|
245
|
+
headers: {
|
|
246
|
+
[props: string]: any;
|
|
247
|
+
};
|
|
248
|
+
method: string;
|
|
249
|
+
};
|
|
250
|
+
baseUrl: string;
|
|
251
|
+
};
|
|
242
252
|
};
|
|
243
253
|
export declare const formatHTTP: (fetch: any) => Promise<any>;
|
|
244
254
|
export declare const formatUrl: (base: string, api: string, params?: object) => string;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type: null;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
query: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("success" | "close")[], "success" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
data: {
|
|
14
|
+
type: null;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
query: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
required: false;
|
|
20
|
+
};
|
|
21
|
+
}>> & {
|
|
22
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
}, {}>;
|
|
25
|
+
export default _default;
|
|
@@ -23,4 +23,5 @@ import IVUserSelector from "./component/IVUserSelector.vue";
|
|
|
23
23
|
import IVVendorSelector from "./component/IVVendorSelector.vue";
|
|
24
24
|
import IVMaterialSelector from "./component/IVMaterialSelector.vue";
|
|
25
25
|
import IVContractSelector from "./component/IVContractSelector.vue";
|
|
26
|
-
|
|
26
|
+
import IVApproval from "./component/IVApproval.vue";
|
|
27
|
+
export { IVOrgDropdown, IVProdBaseDropdown, IVLineDropdown, IVSetofbookDropdown, IVPostDropdown, IVManagDropdown, IVRateDropdown, IVUnitDropdown, IVMaterialTypeSelector, IVMaterialTypeDropdown, IVProjectSelector, IVProduceProjectSelector, IVMainContractSelector, IVInnerContractSelector, IVOuterContractSelector, IVFileUpload, IVTimeSelector, IVClientSelector, IVPaytypeSelector, IVUserSelector, IVVendorSelector, IVMaterialSelector, IVContractSelector, IVAccessoryTypeSelector, IVAssetsTypeSelector, IVApproval, };
|
|
@@ -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}.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}
|
|
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}.title[data-v-2101ce49]{color:#bd9e55;font-size:14px;margin-left:10px;position:relative}.title[data-v-2101ce49][data-v-2101ce49]:after{background:#bd9e55;bottom:2px;content:"";height:1px;left:0;position:absolute;width:201px}textarea[data-v-2101ce49]{border-color:#e7e7e7;height:100%;resize:none}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}
|