syntec3-0-ui-components-test 1.0.0

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.
Files changed (99) hide show
  1. package/README.md +5 -0
  2. package/dist/S3_0UC_main.csv +4 -0
  3. package/dist/S3_0UC_sub.csv +2 -0
  4. package/dist/globalVariableS3_0UC.json +1 -0
  5. package/dist/style.css +1 -0
  6. package/dist/syntec3-0-ui-components.es.js +19518 -0
  7. package/dist/syntec3-0-ui-components.es.js.map +1 -0
  8. package/dist/syntec3-0-ui-components.umd.js +23 -0
  9. package/dist/syntec3-0-ui-components.umd.js.map +1 -0
  10. package/dist/vite.svg +1 -0
  11. package/dist/web.config +17 -0
  12. package/package.json +137 -0
  13. package/src/App.vue +31 -0
  14. package/src/assets/fonts/genYoGothicTW-normal.js +7 -0
  15. package/src/assets/image/defaultImage.png +0 -0
  16. package/src/assets/vue.svg +1 -0
  17. package/src/components/Layout/modules/fullPageGlobal.vue +113 -0
  18. package/src/components/Layout/modules/viewFile/config.js +65 -0
  19. package/src/components/Layout/modules/viewFile/createView.vue +1000 -0
  20. package/src/components/Layout/modules/viewFile/filterCriteria.vue +816 -0
  21. package/src/components/Layout/modules/viewFile/viewList.vue +291 -0
  22. package/src/components/Layout/modules/viewFile/viewManageTool.js +271 -0
  23. package/src/components/Layout/modules/viewFile/viewRecord.vue +472 -0
  24. package/src/components/Layout/modules/viewFile/viewTabs.vue +542 -0
  25. package/src/components/Layout/tools/GlobalDialog.vue +115 -0
  26. package/src/components/Pagination.vue +139 -0
  27. package/src/components/columnConfigNext.vue +273 -0
  28. package/src/components/customFilter/customFilter.vue +492 -0
  29. package/src/components/customFilter/filterCriteria.vue +769 -0
  30. package/src/components/customTable/components/headerOperation/index.vue +136 -0
  31. package/src/components/customTable/components/headerTabs/index.vue +171 -0
  32. package/src/components/customTable/components/tableContent/index.vue +440 -0
  33. package/src/components/customTable/index.vue +305 -0
  34. package/src/components/dialog.vue +85 -0
  35. package/src/components/pageContent.vue +48 -0
  36. package/src/components/popover.vue +402 -0
  37. package/src/configFiles/apiFile/baseApiList.json +11 -0
  38. package/src/configFiles/apiFile/coreApiList.json +24 -0
  39. package/src/configFiles/apiFile/mesApiList.json +4 -0
  40. package/src/configFiles/apiFile/mmsApiList.json +3 -0
  41. package/src/configFiles/errorCode.json +291 -0
  42. package/src/configFiles/version.js +2 -0
  43. package/src/i18n/lang/en-us.json +2060 -0
  44. package/src/i18n/lang/errorCodeTranslate.mjs +847 -0
  45. package/src/i18n/lang/zh-cn.json +2062 -0
  46. package/src/i18n/lang/zh-tw.json +2059 -0
  47. package/src/index.js +115 -0
  48. package/src/main.js +51 -0
  49. package/src/plugins/excel.js +88 -0
  50. package/src/router/index.js +41 -0
  51. package/src/scriptFiles/apiConfig/baseApis.js +10 -0
  52. package/src/scriptFiles/apiConfig/mesApis.js +10 -0
  53. package/src/scriptFiles/apiConfig/mmsApis.js +10 -0
  54. package/src/scriptFiles/apiConfig/privateCloudCoreApis.js +13 -0
  55. package/src/scriptFiles/apiConfig/serviceRoute.js +23 -0
  56. package/src/scriptFiles/apis/baseApiFunction.js +63 -0
  57. package/src/scriptFiles/apis/mesApiFunction.js +15 -0
  58. package/src/scriptFiles/apis/mmsApiFunction.js +9 -0
  59. package/src/scriptFiles/apis/privateCloudCoreApiFunction.js +101 -0
  60. package/src/scriptFiles/backendApiFunction.js +11 -0
  61. package/src/scriptFiles/checkApiErrorMechanism.js +137 -0
  62. package/src/scriptFiles/common/objectDataProcessing.js +65 -0
  63. package/src/scss/base/commom.scss +1068 -0
  64. package/src/scss/base/dialog.scss +45 -0
  65. package/src/scss/base/index.scss +3 -0
  66. package/src/scss/base/table.scss +28 -0
  67. package/src/store/index.js +25 -0
  68. package/src/store/module/langStore.js +116 -0
  69. package/src/style.css +52 -0
  70. package/src/utils/excel.js +86 -0
  71. package/src/utils/formula.js +69 -0
  72. package/src/utils/https.js +13 -0
  73. package/src/utils/i18n.js +42 -0
  74. package/src/utils/shiftSelect.js +164 -0
  75. package/src/utils/summation.js +77 -0
  76. package/src/utils/tableWidth.js +29 -0
  77. package/src/utils/toolFun.js +93 -0
  78. package/src/views/productionWorkOrder/components/columnConfig.vue +242 -0
  79. package/src/views/productionWorkOrder/components/docCustomFieldForm.vue +739 -0
  80. package/src/views/productionWorkOrder/components/filePreview.vue +148 -0
  81. package/src/views/productionWorkOrder/components/querySearch.vue +363 -0
  82. package/src/views/productionWorkOrder/configFiles/excelImportErrorCode.json +94 -0
  83. package/src/views/productionWorkOrder/configFiles/pdfDefaultConfig.js +933 -0
  84. package/src/views/productionWorkOrder/configFiles/planMakingScript.js +600 -0
  85. package/src/views/productionWorkOrder/configFiles/productionRelatedScript.js +368 -0
  86. package/src/views/productionWorkOrder/configFiles/rulse.js +23 -0
  87. package/src/views/productionWorkOrder/configFiles/status.js +50 -0
  88. package/src/views/productionWorkOrder/index.vue +2174 -0
  89. package/src/views/productionWorkOrder/productionFlowLabel/component/addCirculationLabel.vue +394 -0
  90. package/src/views/productionWorkOrder/productionFlowLabel/component/circulationLabelTable.vue +124 -0
  91. package/src/views/productionWorkOrder/productionFlowLabel/component/materialPartFilePreview.vue +167 -0
  92. package/src/views/productionWorkOrder/productionFlowLabel/component/workOrderInformation.vue +28 -0
  93. package/src/views/productionWorkOrder/productionFlowLabel/index.vue +604 -0
  94. package/src/views/production_work_order/components/priorityTooltip.vue +53 -0
  95. package/src/views/production_work_order/index.vue +1307 -0
  96. package/src/views/review_record/components/materialInfo.vue +50 -0
  97. package/src/views/review_record/components/rootCause.vue +42 -0
  98. package/src/views/review_record/components/workDetail.vue +115 -0
  99. package/src/views/review_record/index.vue +884 -0
@@ -0,0 +1,2 @@
1
+ schema_code,field_code
2
+ S3_0UC_app,"setting,personalInfo,language,homepage,all,Notyetstarted,Alreadystarted,PauseProcessing ,Latecommencement,workReport,apiError,productionManage,import,export,submit,saleOrder,productionPlan,assemblyWorkOrder,systemConfiguration,hello,user,workOrder,task,workReporting,department,actory,basicData,productDefinition,bom,unit,defectiveItems,productionProcesses,processRoute,productRouteManagement,procesManagement,logout,log,perRow,items,fullName,state,accountNumber,password,query,identity,role,newUsers,actions,index,mobilePhone,departmentName,position,confirm,edit,permissionConfiguration,delete,workShift,roleManagement,roleName,add,createStaff,createTime,roleRemark,addRole,editRole,rolePersonSetting,roleInfo,addStaffList,employee,multiple,staffList,empNumber,addShift,breakTimeTable,shiftMode,defaultShift,shiftItemName,shiftItemTime,editAndDelete,nextDay,addBreakTime,editBreakTime,shift,timePeriod,breakStart,breakEnd,description,required,remarkLengthLimit,timeInterval,type,break,editShift,selectShift,editshiftItemTime,shiftStartTime,shiftEndTime,oneShift,twoShift,threeShift,fourShift,systemSnformation,processManagement,WorkReportRecords,userManage,userManages,save,cancellation,haveSpace,addDepartment,editDepartment,isInUse,enable,disable,finished,unfinished,orderNumber,deliveryDate,contractNumber,customerName,woCount,addSuccess,editSuccess,woNumber,productPartNumber,productName,submitError,addSyShiftFail,addShiftFail,editShiftFail,noDispatch,workStart,noStart,overdueStart,overdueEnd,workEnd,closed,suspendProcess,changing,handling,pauseProcessing,craftPath,clearAll,inputError,SNnotEmpty,canNotBeEmpty,standardParam,processFile,mainFile,subFile,fileName,fileType,customField,product,preview,otherFile,synchronization,dataPathError,typeNotSupport,productionOrderNumber,stationNumber,stringSearch,partNumber,noData,productionProcess,routeProcessID,equipmentStation,search,submitFail,standardTime,sizeBig,sizeMedium,sizeSmall,customerNameDigiwin,orderExpectedDue,requiredThroughput,startDate,finishDate,requiredField,processName,processNumber,workOrderSerialNumber,cantBeEarly,cantAfEarly,sortSetting,ascending,descending,staff,startTime,endTime,total,actualEmp,processThroughput,quantityOfGoodProducts,quantityOfDefectiveProducts,moreInfo,adverseCausesRecord,badCause,badCauseNum,myWorkOrder,manualReport,planDate,remainingRequired,totalRequired,pause,designate,jobSpecification,errorAlert,code,nameCause,addReasonsDefects,remark,enableNot,action,deactivate,confirmDeactivation,noSpaces,onlyEnglishNumbers,no20Characters,no50Characters,typeDuplicated,editReasonsDefects,displayDeactivatedItems,modifiedSuccessfully_api,modificationFailed_api,loadMore,requestError,requestSuccess,codeRepeat,PleaseSelect,startDateInterval,closeCamera,excelExport,exportExcelData,columnConfiguration,goodProducts,defectivesNum,cycleStartTime,cycleEndTime,noDateRangeSelected,number,processOrderNumber,exceptStartDateInterval,cantLessZero,goodProductTotalCount,badProductTotalCount,needClickPlus,selectBadCase,inputBadProductCount,selectDepartment,selectPerson,automatically,maintain,numerical,fullNumber,information,specifications,failed,containing,processEmpty,startSuccess,finishSuccess,pauseSuccess,designSuccess,circulation,progress,createWorkOrder,expectEmp,requiredNotZero,assignPersonnel,assignmentFailed,pleaseCause,reportSuccess,reportFail,negative,totalReportCount,tooLess,toMoreThenZero,operator,workOrderStatus,advancedSearch,more,print,newPlan,dispatchWorkOrders,viewProgress,underExecution,editSchedule,deletedWorkOrder,successfullyDeleted,dataImport,exportTemplate,excelImport,duplicateName,importTheTemplate,importFail,fileTypeErrorAndUploadXlsxOrXls,excelImportNoData,excelSyntecTemplateError,importDataCheck,totalNumber,success,fail,exportResults,theFollowing,payAttTo,failureReason,checkResult,InsItemIsHas,emptyStr,do,notEN,lengthExceeds,notSpe,repeat,inputIsCorrectButRequestFailed,succImportedAll,previewSubmit,requestResults,transactions500,numberEmpty,numberMaximum50,productEmpty,processDoesNotExist,processPathDoesNotExist,partNumberDoesNotExist,requiredNumber,workOrderNumber,jobNumberDoesNotExist,operationSubWorkOrder,dispatchSuccessful,dispatchFailed,workOrderDelivery,beenDispatched,planDevelopmentReport,productionWorkOrderRemittance,successfullyImported,productManagement,enterProductPartNumber,enterProductName,productType,addProducts,importExcel,excelTemplate,productTypeManagement,deactivated,spec,unity,productProperty,productStatus,supplierName,illustrate,delProductConfirm,productImportTemplate,selfMadePart,purchasePart,notHave,pleaseEnter,cannotBeEmpty,cannotExceed20,cannotExceed30,cannotExceed50,cannotExceed80,cannotExceed100,cannotExceed200,successfullyEdited,editingFailed,addingFailedProductDup,editProduct,endProduct,semiFinishedProduct,rawMaterial,cuttingTool,mold,productPropertyError,saveSuccess,saveFail,notExcel,emptyExcel,headerError,productTypeList,defaultCannotDel,typeName,dataDuplication,delProductTypeConfirm,productTypeInUse,delSuccess,delFail,productImportNum,productImportName,productImportSpec,productImportUnit,productImportType,productImportPro,productImportA,productImportD,importSuccess,importProductFailRes,addProcess,selfControl,outsource,delReminder,processType,manufacturingType,processingProcess,inspectionProcess,assemblyProcess,transportationProcess,confirmDeleProcess,thisProcessDele,deleFailed,processImportTemplate,processCodeNot,saveFailed,requiredItemsNotEmpty,procCodeFormatError,procNameFormatError,procTypeFormatError,manufTypeFormatError,importSuccessful,nonExcelFiles,excelEmpty,inMeterHeader,enter,processRouteName,addProcessRoute,editProcessRoute,isDefaultRoute,processCount,yes,no,delConfirmPR,processRouteTemplate,prNamehaveExit,productNumCannotNull,processRouteCannotNull,processRouteW,productNumNotExist,processCannotNull,processNotExist,importFailPR,isDefaultRoutes,saveFields,addMoreProcess,clearProcess,addProcessRouteMsg,choosePlm,processSequence,plmSetting,sort,selectProcess,dataDup,errorProcessNumName,delProcessRoute,onlyEnNum,dataRedundancy,editingProc,uploads,deleFiles,fileSize,uploader,confDeleFile,drawing,geneSpecif,inspecSpecif,toolSpecif,procProgram,material,other,selectProfile,uploading,uploadSuccess,uploadFailed,duplicateFile,uploadStatus,procCorrel,editProcCorrel,theFollo,ordersFailed,MESManagement,fileManagement,failedContentExport,materialsPerPage,beenUploaded,contentFirst,noHttps,numberIsEmpty,workOrderIsEmptyOr0,workOrderIsEmpty0,workOrderIsEmptys0,workOrderIsEmptysOr0,workOrderNumerical,processesNumerical,pathIsEmpty,productnumberIsEmpty,inspect,processInformation,empty,zhEnNum,typeIncorrect,sizeExceeds10MB,strLengthLimit50,strLengthLimit15,formCategory,formName,formNumber,customFieldQueryFailed,additionalForms,fillIn,fileNoHasEmpty,mustNumber,noEquipment,addNoEquipment,numberOfJobApplications,clickEdit,aProdNumNotIs0,numIs0IsDel,timeRulesSSP,timeRulesSEP,timeRulesSAC,timeRulesWS,timeRulesWEP,timeRulesWAC,timeRulesWSP,timeRulesWEAC,timeRulesWES,timeRulesEEP,timeRulesESP,timeRulesES,modifyWorkReportRecords,modifyWorkReportRecord,previousProcesses,workReportSetting,restrictionSetting,basicSettings,getDeviceInfoFailed,topPriority,priority,secondary,leastImportant,normal,importantSort,remind,editTime,editPersonnel,editProject,editContent,originalContent,productionTime,assignSaveFailed,startedConstruction,completed,completeds,notStarted,paused,nonCommencement,nonProcessing,enterTheCorrectTime,formFillingRecord,filledBy,fillTime,customizeFormSettings,formSettings,associatedSuccess,selectPartNumber,PLM_DRAWING_IMG,PLM_STANDARD_RULE,PLM_QUALITY_CONTROL_RULE,PLM_CUTTING_TOOLS_RULE,PLM_NC_PROGRAM,PLM_PART_DATA,PLM_OTHERS,downloadFile,currentAssignedPersonnel,hasBeenAssigned,workRequiredThroughput,reportFailForCount,view,negatives,requireds,processDeployment,dateRange,dateRanges,fileDownload,productSpec,reportForms,reportingForWork,statisticalDimension,productSpecifications,disassemble,reviewStatus,reviewer,reviewTimeRange,reviewTime,approved,recordRemark,audited,unaudited,pendingReviewRecords,reviewNotice,openReview,closeReview,reportProcessSetting,reportReview,closeReviewNote,passReview,cancelReview,actualRecordEmp,reviewSuccess,rejectRate,poorProportion,proportion,negativeStatistics,getReviewStatusFail,customerForm,previewFile,actualRepWorkEmp,dragToSort,confirmCompletion,currentCompletion,compulsoryCompletion,currConfirmCompletion,afterThisReport,currentIs0,batchPrint,selectPrintTemplate,orderQrcode,productionWorkOrder,batchSize,processList,exportOrderPreview,pleaseSelectOrder,processQRCode,getSubOrderInfoFail,getOrderSerialNumberInfoFail,getOrderAllSerialNumberFail,processOrderNum,withoutSpacingRules,countFrontRearProcessControlInfo,countKeyProcessControlInfo,statusFrontRearProcessControlInfo,statusKeyProcessControlInfo,countControl,statusControl,frontRearControl,keyProcessControl,keyProcesses,reportFailed,WorkReportOne,WorkReportTwo,startFailed,StartOne,StartTwo,criticalProcess,criticalProcessError,columnSetting,returnToDefault,productionOrderLevel,processOrderLevel,columnLimit18,columnLimit7,setSuccessfully,columnLimit2,orderDispatchToReporting,orderSharing,sharedSelectOrder,errorDifferentOrders,orderSharingQR,download,orderProgress,orderTracking,no250Characters,processNotes,lastUpTime,processRemark,departmentPersonnel,deactivateds,plannedCompleteDate,planExpectedDate,turnOffScanning,deviceGroup,device,stopUse,noGroup,salaryFailed,openRepporting,open,close,reportNotice,reportDirectly,processOrderStatus,reportTimeInterval,completeTimeInterval,showMyOrder,showMyRecords,cycleEndTimeInterval,yearRange,reviewWarning,agentReportingFunction,workOrderCustomSetting,workReportCustomSetting,addCustomField,editCustomField,showDisabledField,customSettingNotice,batchAction,cancelBatchAction,batchEnable,batchDisabled,dragSort,fieldName,fieldType,itemIndex,fieldProperty,regardText,regardTextPlaceholder,textType,numberType,dateType,copy,copyAddProcessPath,presetPathModified, processUnderPath,workOrderImportTemplate,workOrderProcessImportTemplate,fillingOutExcelTemplates,customersSameOrderDate,workOrderEnteredGenerated,importantSorting,processPathName,processPathFieldNumber,executorsJobNumbers,severalProcessesFewLines,fillingInstructions,selectImportTemplate,onlyImportWork,workOrdersProcessDetails,planWorkOrderImportTemplate,planWorkOrderProcessImportTemplate,importantSortIsEmpty,fileTypeErrorAndUploadXlsx,repeatedOperations,containsFailed,customizationProcessPath,jumpToThe,page,addWorkOrder,editWorkOrder,buildWorkOrder,baseField,selectCustomField,processedGoodProductsNum,processedDefectiveProductsNum,deviceWorkNum,basicWorkReportFieldFilling,customWorkReportFieldFilling,customFormFilling,basicFieldModification,customFieldModification,customFieldReocrd,customFieldName,customFieldValue,insufficientAvailableInventoryTip,reportNumSetting,autoCompleteSetting,defaultShow,defaultShowThroughput,cantOpenReview,cantOpenAutoComplete,dataCollection,getDataRequired,onlyNetEquip,outserviceDevice,eightDigits,pathProcesslimitation,auditFail,consumptionAmount,procurementNotProgress,stockModel,finishedProductMarket,patchInventory,bsInventory,adjustedInventory,batchRollingInventory,batchInventory,rollingInventory,mrpSetting,replenishment,turnoverDays,adjustMagnification,minimumOrderQuantity,minimumPackQuantity,reorderPoint,safetyStock,inventoryReplenishmentAmount,deliveryDay,valueNotBeNegativeAndZero,day,valueNotBeFloat,productData,valueNotBeNegative,MRPSettingRequired,hour,minute,second,workTimeUnit,technologicalRequirements,intMoreThan8,floatMoreThan3,wrongImportTimeUnit,standardTimeMustPositive,workOrderRequirementsNumber,processRequirementsNumber,productionReport,processRequires,expectedProcessingEquipment,change,changeItem,changeMark,startAdjustMachine,changeStatusSuccess,changeStatusFail,changeError,SystemError_api,adjustmentEquip,resourceAssign,personnelAssign,deviceAssign,currentAssignedDevice,selectGroup,selectDevice,manufactureSettings,reportWorkQRcode,personnelWorkLog,settingPage,settingItem,reset,generateQrcode,downloadQrcode,settingQrcodeSize,settingQrcodeFirst,qrcode,copyQrcodeURL,sizeLimit,workProject,adjustmentProject,adjustmentPersonnel,adjustmentTimeInterval,adjustmentWaringOne,adjustmentWaringTwo,adjustmentStartTime,adjustmentEndTime,adjustmentDuration,production,prodWorkOrder,speedOfProgress,defectiveRate,actualStartDate,actualCompletionDate,selectEquip,selectedItems,productFile,creator,updatePerson,updateTime,templatename,templatenameSave,abnormalProcess,templatenameRepeat,newTemplate,editTemplate,selected,term,templatEmpty,templatError,importProcessTemplate,processTemplate,columnConfigurationFail,administration,keepOne,fileMassDelete,dataError,fileNotSelected,addCustomColumn,showDisableColumn,upOrder,downOrder,reuse,orderFail,stopCustomRemind,itemOrder,customAttributeName,displayType,optionsNumber,customColClass,customSelectCol,textField,selectField,hyperLink,editCustomColumn,dropOptionSetting,dropOptionIsRequired,someColumnRequired,customLimit,colNoSpecialCharacters,addCustomColumnOption,saveBasicCol,confirmToDeleteOption,machineGroup,productRouteVersion,fileTypeName,defaultFileTypeNoEditAndDelete,getFileTypeFail,fileTypeIsUsedCannotDelete,machineAdjustmentProject,addMAjroject,modifyMAjroject,machineAdjustmentInstructions,writeBackWorkPiecesNum,confirmToDelete,strLengthLimit200,duplicateMAjroject,fileArchiveManagement,documentCustomField,materialCustomization,processCustomization,customizationOfProcessRoute,customFileType,workOrderCustomization,customizedJobReporting,customizedReasonsForDefects,customTuning,templateIssue,inspectedQuantity,inspectionContent,pathProcessOrderLimitation,to,starttime,endtime,productNumber,materialSpec,expectedStartDate,expectedDueDate,materialUnit,materialType,materialProperty,materialState,processOrderSn,batchNumber,productionOrderRequiredThroughput,productionOrderExpectedStartDate,productionOrderExpectedDueDate,productionOrderPriority,createBySelf,purchasedParts,none,finishedMaterial,semiFinishedMaterial,moldTool,partCountRequired,productionFileName,orderNumberIsNullOrEmpty,orderNumberLengthExceeded,orderCustomerNameLengthExceeded,orderExpectedDueIsNotDate,orderCustomerNameInconsistent,orderExpectedDueInconsistent,productionOrderNumberIsNullOrEmpty,productionOrderNumberLengthExceeded,productionOrderNumberIsExist,partNumberIsNullOrEmpty,partNumberNotExist,productionOrderRequiredThroughputIsNullOrEmpty,productionOrderRequiredThroughputIsNotNumber,productionOrderRequiredThroughputIsNotGreaterThanZero,productionOrderRequiredThroughputIsNotGreaterThanIntMaxValue,productionOrderExpectedStartDateIsNotDate,productionOrderExpectedDueDateIsNotDate,productRouteNameIsNullOrEmpty,productRouteNameNotExist,productionOrderPriorityIsNotCorrectType,productionOrderPartNumberInconsistent,productionOrderRequiredThroughputInconsistent,productionOrderExpectedStartDateInconsistent,productionOrderExpectedDueDateInconsistent,productionOrderProductRouteNameInconsistent,productionOrderPriorityInconsistent,productionOrderOrderInconsistent,productionOrderNumberDuplicate,productionOrderBatchNumberIsExist,partNumberStatusIsDisable,productionOrderCustomFieldValueLengthError,processOrderCustomFieldValueLengthError,workOrderCustomFieldValueLengthError,productionOrderNotFindCustomOption,productionOrderDateFormatError,productionOrderCustomFieldInconsistent,productionProcessIsNullOrEmpty,productionProcessIsNotNumber,productionProcessNotExist,processOrderRequiredThroughputIsNullOrEmpty,processOrderRequiredThroughputIsNotNumber,processOrderRequiredThroughputIsNotGreaterThanZero,processOrderRequiredThroughputIsNotGreaterThanIntMaxValue,processOrderExpectedStartDateIsNotDate,processOrderExpectedDueDateIsNotDate,processOrderPriorityIsNotCorrectType,processOrderRequiredThroughputInconsistent,processOrderExpectedStartDateInconsistent,processOrderExpectedDueDateInconsistent,processOrderPriorityInconsistent,processOrderNotFindCustomOption,processOrderDateFormatError,processOrderCustomFieldInconsistent,workOrderEquipGroupNameNotExist,workOrderEquipNameNotExist,workOrderShiftNameNotExist,workOrderEmpNumberNotExist,workOrderRequiredThroughputIsNotNumber,workOrderRequiredThroughputIsNotGreaterThanZero,workOrderRequiredThroughputIsNotGreaterThanIntMaxValue,workOrderExpectedStartDateIsNotDate,workOrderExpectedDueDateIsNotDate,workOrderRequiredThroughputKeyIsNullOrEmpty,workOrderBatchNumberIsNotBelongToProductionOrder,workOrderNotFindCustomOption,workOrderDateFormatError,onlyOrderProductionOrderDataLegal,productionOrderOtherRowDataError,notFindCustomFieldId,salespersonMustExistWithinTheSystem,theLengthEmployeeNumberExceed20,theLengthSourceOrderNumberExceed50Characters,theFormatError,theLengthProductionNumberExceed50Characters,workOrderProductionNumberFormatError,duplicateWorkOrderProductionNumber,theProductionNumberAlreadyExistsInTheSystem,orderSalesmanIsDisable,sameOrderNumberSalespersonConsistent,deviceName,itemsPerPage,cancel,dispatch,loading,consDate,machineName,serialNumber,planMaking,planProgress,standardTotalTime,standardTimeSecondPerItem,exportSyntecOrder,exportExcel,someColumnIsRequired,partCount,actualProgress,expectedProgress,excelCustomize,tableHeaderCustomize,chooseTimeRange,groupName,progressStatus,sortBy,orderStatus,hide,cloudImport,orderSchedulePreview,deviceSchedulePreview,productionOrderNumDetail,actualThroughput,abnormal,order,subOrder,saveOrder,dataSaveSuccess,warning,serialNumberRuleSetting,snBatchSetting,serialNumberPreview,prefixWord,middleWord,sequenceNumberCount,nowDate,noSelect,partNumBefore,partNumAfter,partNumCount,year,month,yearMonth,yearMonthDay,numberLimitTen,numberLimitFifty,numberLimitPositive,shiftName,submitSuccess,deleteSuccess,numberNotInteger,workOrderReport,status,inUseStatus,stop,batchStop,editAndStop,serialNumBinding,showBindProductionOrder,serialNumGeneration,productionOrderCount,bindedNumber,addSerialNum,batchSerialNum,autoGenCount,autoGen,binded,bindedSerialNumberTable,deleteDuplicated,serialNumExample,serialNum,colNum,reason,importFailInfo,check,importProductionOrderQuantity,importSerialNumCount,importInfoCorrect,importSuccessSerialNumCount,enterCorrectQuantity,numLessRequired,serialNumExcel,serialDuplicated,serialDuplicatedCount,manualAddNum,unbindedNotEnough,bindedDate,machineAndStation,importantOrder,result,importSerial,availableCount,notAddNewSerial,serialNumUnbinding,reportStatus,sequenceNumber,unbinded,allUnbinded,isReportWork,notReportWork,confirmUnbindAll,includeIsReportWork,exportSerialNumber,snExportPreview,snExportSetting,snPrintSize,centimeter,orderSerialNumber,pageSizeLimit,defaultPrintSize,noSerialNumberData,importTime,exportTime,processingType,batch,currentSN,processSetting,returnDispatch,week,expectedTuningTime,productionOrderSort,productionOrderSortSetting,singlePieceCycle,scheduleSetting,scheduleMethodSetting,NStationSetting,defaultScheduleMethod,basicDaySetting,defaultStart,startStationComputing,NStationCalculation,completionStationComputing,plus,minus,NStation,firstStationTime,NStationTime,endStationTime,processOrder,expectedImplementStaff,transferTime,productionProcessTransferCount,showNoProcessOrderExpectedStartDate,pageShowSetting,processOrderExpectedStartDate,processOrderExpectedDueDate,processOrderRequiredThroughput,equipGroupName,equipName,processOrderPriority,routeID,snBindedOther,numberLimitTwenty,adjustMachine,statusError,serialNumRule,customParameter,ruleName,showDisable,digits,ruleState,defaultRule,snRange,paramName,selectCount,latestModiDate,selectName,displayString,default,param,snNameExist,optionExist,deleteOptionWarn,needParamName,needFullRange,deleteCustomParamWarn,paramIsUsed,prodOrderBind,partNumBind,snParam,bindedRecord,serialRuleInfo,bindedEmp,bindedTime,snStart,snEnd,count,modiSnBinding,batchAdd,pnReplacement,snAddStart,snAddEnd,snWasBinded,snExcelLimitOnePn,pnNotUseProdNum,generatedCount,selectPnWarn,needGenFirst,serialNumberQuery,snNameAlreadyExist,materialName,getDetail,networkError,mutiSelect,level,columnName,workOrderLevel,makeType,rebatchSplitting,saveBatch,partNumberHasNoRuleSetting,batchNumberRule,batchRuleName,batchNumberRuleSetting,batchNumberPreview,batchCount,batchCountLimit,batchNameAlreadyExist,illegalEmpty,exportData,group,getProductRouteListError,use,productRouteName,processInfo,showMore,customCol,finishProduct,semiFinishProduct,knives,item,batchQrcode,operationEmp,operationTime,conditionName,defaultValue,workOrderEquipment,processOrderProgressStatus,past,future,current,timeLine,timeUnit,customColSetting,orderLevel,string,singleSelect,date,yearMonthDate,productionOrderStatus,productionOrderStatusList,processOrderStatusList,inProgress,craftPathName,productionProcessName,productionProcessNumber,sourceType,sourceTypeList,processOrderLastModify,processOrderRemark,goodAndDefectiveCount,getDataError,getCustomColFail,workOrderExpectedStartDate,workOrderExpectedEndDate,workOrderProgressStatus,productionOrderConsDate,serialNumberCount,isCriticalProcess,empName,excelImportLimit1000Rows,productionOrder,productionManagementSetting,sequenceNumberHierarchy,serialNumberHistory,alter,jobDescription,bindWorkOrders,unbindWorkOrders,bindingPartNumber,unbindingMaterialNumber,changeBindingMaterialNumber,numberManagement,batchCountLimitInteger,allRecordsNum,selectedRecordsNum,currentCount,dragFileHereOr,clickToUpload,pleaseEnterQualifiedHyperlink,pleaseCheckUploaded,numberUploadsCannotExceed5,uploadFileSize20MB,downloadSuccessful,dateRangeArea,annex,radioButton,checkBoxButton,customFieldIDIsIllegal,illegalDocumentType,customFieldsAreRequired,customTextCannotExceed50Characters,customNumbersExceed15Characters,customHyperlinkFillingIsIllegal,customSingleChoiceFillingIsIllegal,customMultipleChoiceFillingIsIllegal,illegalCustomTimeFilling,illegalFillingCustomTimeInterval,customNumberFillingIsIllegal,ProductionOrderExpectedStartDateLatterThanDueDate,alreadyOverdue,materialCategory,materialProperties,materialStatus,mainSupplierName,duplicateColumnData,progressCheck,maxSupportedSimultaneousEdits,unableToEditClosedTickets,supportReopenClosedTickets,undistributedOrder,unstartedOrderSupportsReturn,pleaseSelectWorkOrder,retreatSuccess,currentTicketClosed,closedTicketConfirmation,closeSuccess,antiCloseSuccess,importExcelData,multiTaskEdit,batchUpdate,deliveryOrder,returnWorkOrder,antiClose,newMaterial,deleteMaterial,workOrderList,workOrderCustomRequiredFields,workOrderInfoSavedSuccessfully,workOrderInfoSaveFailed,isConfirmCancel,ticketCorrespondingInfo,attachmentUpload,workOrderNumbers,currentTableHasNoTickets,expectedStartDay,expectedCompletion,salesOrderNumber,checkWorkOrderRequiredFields,duplicateWorkOrderId,productionStation,productionEquipment,remainingProcessCannotDelete,selectionNumber,identificationName,codePreview,selectNumberingRuleFirst,batchUpdateContent,batchUpdateSuccessful,batchUpdateFailed,failedToObtainSubWorkOrdersForTheProcess,fillInTheBatchUpdateDataFirst,selectTheFieldNameFirst,noAttachment,integerBitsMustNotExceed10Digits,notExceeding30Characters,notExceeding50Characters,creationTimeRange,expectedConstructionStartDateRange,modifyMaterial,workstationData,nextWorkstationInfo,closedTicketsUpdate,workOrderGenerationFail,materialNoImage,materialDetails,confirmToDeleteAction,startDateIsAfterEndDate,completionDateBeforeStartDate,processInfoIncorrect,pleaseSelectData,circulationTagNumber,numberOfTags,numberRuleName,previewOfNumberingRules,batchIssuanceQuantity,manuallyAddCirculationLabels,batchIssuanceOfCirculationLabels,bindFlowLabelList,labelingIssuance,tagPreview,unbindSuccessfully,closeAddTagNumber,countOfTags,exportLabelIssuanceTemplate,theFileSizeCannotExceed5Mb,duplicateCirculationTagNumber,onlySupportsPositiveIntegers,insufficientNumberOfBindingsAvailable,flowLabelSpecification,duplicateCirculationTagNumberWithNewlyAddedData,batchUnbinding,pleaseSelectTheBoundLabelFirst,areYouSureToUnbind,batchUnbindingSuccessful,pleaseSelectUnboundTagsFirst,batchDeletionSuccessful,cannotSaveInPreviewState,generate,remainingBindingQuantity,theCirculationTagNumberIsAUniqueCodeAndCannotBeDuplicated,insufficientRemainingIssuableQuantity,thereIsNoCirculationLabelNumberingRule,boundQuantity,successfullyGenerated,generationFailed,selectTheCirculationTagNumber,duplicateFileNameExistingFile,materialLabelIssuance,labelType,labelSourceObject,tagsNumber,latestLabelIssuer,latestLabelReleaseTime,labelIssuer,labelReleaseTime,materialLabel,noType,materialMasterData,tagSourceNumber,tagNumberingRules,rowExport,labelIssuanceSource,manuallyAddTags,tagNumber,quantityPerLabel,batchReleaseLabels,labelRulesPreview,productionWorkOrderNumber,labelImportTemplate,excelTemplateFields,orderNotExist,materialNotExist,tagValidate,releaseTagsList,selectMaterialMasterData,selectProductionWorkOrder,return,confirmReturn,returnTip,deleteTagEmptyMsg,deleteTagTip,plsSelectLabelSource,documentNumber,productionTagExcelTemplate,materialTagExcelTemplate,tagExcelTemplate,firProductionTip,secProductionTip,firMaterialTip,secMaterialTip,firDefaultTip,secDefaultTip,labelReplacementBinding,availableRemainingNumber,noAvailableNumber,tagChangeBindingMsg,tagSelectBindingMsg,successfullyChangedBinding,orderNotChange,productNumNotChange,columnNotLessSix,columnFrozenFour,selectBindData,tagPublishQR,plsSelectData,printTag,positiveInteger,onlyUseOneTag,closedTicketsNotIssueTags,selectData,endDate,selectPrintingTemplate,printTemplateName,templatesSystem,size,printedFirstData,numberExceedsLimit,submitReviewSettings,productionPlanSetting,salesOrderSetting,autocommit,automaticReview,automaticallySubmitAndReview,planExcelExport,productionPlanNumberCannotBeRepeated,enterTheCorrespondingProcessPathNameInTheProcessPathField,afterFillingInTheRequiredFields,planToImportTemplate,productionPlanImportTemplate,productionPlanNumber,plannedQuantity,requestDeliveryDate,plannedCommencementDate,plannedCompletionDate,fatherPlanNumber,mainPlanNumber,submittedFirst,submissionFailed,pendingSubmissionStatusSubmission,resubmittedFirst,antiSubmissionFailed,pendingReviewStatusForResubmission,resubmittedSuccess,reviewedSuccess,auditedSuccess,closedSuccess,antiClosureSuccess,reviewedFirst,auditFailed,pendingStatusReview,auditedFirst,antiAuditFailed,reviewedStatusUnapproved,closedFirst,shutdownReason,fillInTheReasonForClosure,reverseClosedFirst,antiClosureFailed,closedStatusReverseClosure,deletedFirst,deleteFailed,toBeSubmittedStatusDeleted,planStatus,bomVersion,remainingPlanCount,completionQuantity,orderQuantity,workStartDate,workEndDate,creationDate,submitter,submitTime,avoidSubmitter,antiSubmitTime,antiReviewer,antiReviewTime,closePerson,closeTime,antiClosePerson,antiCloseTime,treatSubmit,treatAudit,minColumnCountInPage,maxFrozenCols,adjustNumber,exportOfProductionPlan,selectPlanFirst,closedPlansUpdate,planLevel,mustBeAPositiveInteger,materialAlreadyExists,checkPlanCorrespondingInfo,pendingSubmitEditable,maxEditPlans,planList,productBomList,checkPlanCustomFields,planInfoSavedSuccess,planInfoSaveFailure,addMaterial,materialTypeId,unitUsage,demandQuantity,inventoryQuantity,inventoryStorageQuantity,positiveIntegerCheck,bomDeleteValidation,standardWorkHourValidation,maxTenDigitInt,orderQuantityValidation,planStartDateAfterPlanEndDate,planCompletionDateBeforePlanStartDate,noDataInTable,checkRequiredFieldsInPlan,hasDuplicatePlanId,system,reverseSubmission,toExamine,antiAudit,generateWorkOrder,adjustNumberValid,noDataCopy,plannedStartDateIsIllegal,plannedDueDateIsIllegal,productionPlanList,productionPlanningProcess,multiPlanEdit,maxEditProductionPlans,editableProductionPlans,submitTooltip,reverseSubmitTooltip,toExamineTooltip,autiAuditTooltip,closeTooltip,antiCloseTooltip,deleteTooltip,parentMaterialNotAsChildMaterial,copyPlan,confirmDelete,confirmCancel,changeTagPublishBindFail,pushDown,associativeQueries,theMinimumColumns6,upTo4ColumnsFrozen,returnQuantity,inboundRemain,listOfDocuments,warehousingEntry,outboundOrder,warehouseEntryNotice,deliveryNotice,inventoryList,listOutboundOrders,sourceOrderType,sourceOrderNumber,sourceSingleLineNumber,purchaseOrder,movementsName,changeFile,itemNoName,storageSpace,aberrationTime,productionInventoryPreset,productionReturnMaterialPreset,productionMaterialRequisitionPreset,productionReturnPreset,warehouseNumber,storage_nameForm,storageLocationNumber,materialId,change_amount,productionReceipt,selectDocument,productionMaterialRequisitionForm,theWorkOrderNotBOMListDown,pleaseSelectDownFirst,crossDocumentNotSupported,downFailedDocumentsClosedState,pleaseFirstSelectQuery,crossDocumentQueryNotSupported,defaultStoragePreset,productBOMList,inventorySurplusReceiptPreset,inventoryLossOutboundPreset,frozenInventoryPreset,removeFrozenInventoryPreset,salesOutboundPreset,otherOutboundPreset,purchaseReturnMaterialPreset,purchaseInventoryPreset,salesReturnsPreset,otherInventoryPreset,startDates,endDates,selectedRangeNotExceedMAXdays,materialTypes,quantityOfMaterialsUsed,outboundQuantity,unfinishedOutbound,inventoryQuantitys,automaticMaterialSuccessful,inventoryChangeDocNumber,workNotProductBOM,insufficientInventory,selectPrintDoc,equipmentSchedule,workOrderSchedule,programmeSetting,Date,monday,tuesday,wednesday,thursday,friday,saturday,sunday,subWorkorderLinkage,linkageMode,moveAllProcessesTogether,allSubWorkOrderLinkage,displayAbnormalContentDuringLinkage,display,donotDisplay,adjustmentLinkedToSameEquipment,adjustMode,adjustPrevious,adjustBehind,simultaneouslyAdjusted,rangeOfInfluence,dispatchProcessLocking,sortReset,workOrderEidt,splitTask,splitNumber,split,statusColorDescription,noDispatchDesc,noStartDesc,underExecutionDesc,finishedDesc,closedDesc,alreadyOverdueDesc,productpartNumber,productname,splitTip,updateNotification,updateNotice,segmentCode,station,equipment,old,new,splitNumberTip,sourceOrderNo,isVerifiedOrExecutingOrFinished,menuImport,selectProductionPlan,Self,Purchase,None,workingHoursCaculate,calculationSetting,automaticSchedulingSetting,startingStationStartTime,beatPointStartTime,completionStationStartTime,fillDateTimeCompletely,calculationSuccess,calculationFail,plsFillStartEndTime,plsSetInfo,batchClose,planNumGenerateFail,daily,printPreview,printClientInstall,batchPrintClient,selectMaterials,inventorySetting,basicField,unitSetting,batchShutdown,imageImport,enableDefaultRepository,enableShelfLifeManagement,outboundWarehouse,shelfLifeUnit,outboundWarehouseLocation,qualityGuaranteePeriod,reorderPoints,storageWarehouse,warehouseSelection,positionSelection,parentCategory,sun,qualityGuaranteePeriodRulesText,sixDigitDecimalVerificationRulesText,materialNameNoSpace,batchQueryFailed,tenMbLimit,imgFormatError,chooseFinalCategory,requiredNotEmpty,continueAddInfo,storageType,storage_id,storage_name,storage_address,storage_manager,storage_phone,storage,editMaterial,unitList,unitName,unitVerify,unitRepeat,deleteUnit,customerCode,customerAbbreviation,contacts,contactNumber,contactAddress,email,fax,area,detailedAddress,filePreview,generateNumber,cancelTip,systemTag,materialNumberGeneration,customTextCannotExceed200Characters,unitVerification,unitUsed,orderDateRules,name,salesCategory,orderDate,materialNumber,ThisOutboundQuantity,outboundRemaining,customerOrderNumber,salesEmp,followEmp,dispatchLocation,salesBatchNumber,customerModelCode,customerProductCode,cartons,quantityPerCarton,salesRemark,materialRemark,priceIncludingTax,priceExcludingTax,amountIncludingTax,amountExcludingTax,createEmpName,auditEmpName,auditTime,pushPlanNum,pushEmpNum,plsSelectSaleOrder,standardSales,outsourcedSales,salesReturn,pendingReview,deliveryInProgressFa,review,materialInventoryInsufficient,materialInventoryInsufficientOrder,planNumberIsEmpty,orderNumberIsEmpty,remainingAvailableQuantity,salesOrderPushDownFailurePrompt,salesOrderPushDownFailurePromptDetail,materialInventoryInsufficientPrompt,ticketDeleteConfirmation,unassignedWorkOrderCanDelete,template,materialFile,stockOut,stockView,operationLog,toBeFinished,viewOperationRecord,operationType,operationDetails,operationTimeInterval,operationTips,addOrder,editOrder,deleteOrder,toBeFinishedTips,toBeFinishedConfirmTips,customerList,sizeLimitSingleFileIs10MB,fileIsExitTooltip,fileUpdataTooltip,numberUploadsCannotExceed10,materialPicture,materialImages10MBHaveOneImage,upTo10MaterialFilesButFileNotExceed10MB,customer,pleaseSelect,batchOperation,moreActions,batchImport,batchExport,advancedOperation,parentSpecModel,childSpecModel,manufacturerIDOfPOM,businessName,manufacturerAbbreviationOfPOM,contactOfPOM,contactNumberOfPOM,emailOfPOM,faxOfPOM,contactAddressOfPOM,remarksOfPOM,manufacturerListOfPOM,manufacturer,productionOrderProcess,productionProcessTemplate,checkBOMList,goodStorageWarehouse,goodStorageSpace,defectiveStorageWarehouse,defectiveStorageSpace,purchaseStorage,purchaseStorageSpace,storageImportWarn,shelfLifeImportWarn,intervalStart,intervalEnd,viewOperationRecordTxt,viewOperationRecordTips,operationTimeRange,newView,editView,copyView,deleteView,viewList,viewListTips,createView,viewName,basicInfo,dataFilter,dataFilterTips,viewIcon,viewPermission,quarter,addFilterConditions,greaterThan,greaterThanOrEqualTo,lessThan,lessThanOrEqualTo,equalTo,notEqualTo,yesEmpty,notEmpty,selectRange,dynamicFiltering,contains,notContains,inRange,notInRange,isOneOf,notAnyOf,today,yesterday,thisWeek,lastWeek,thisMonth,lastMonth,lastThreeMonths,custom,customRange,maxValue,minValue,moreView,viewDeleteTip,duplicateViewNames,originalOrderNumber,orderDemander,consUserName,modiUserName,modiDate,inboundQuantity,originalOrderType,closeNonClosedTickets,selectOperation,startOrEndTime,inputText,selectOptions,timePrecision,selectTime,pastOrFuture,selectOperator,inputRangeValue,inputValidRange,startValueCannotGreaterThanEndValue,selectTimeAndPrecision,selectStartOrEnd,selectTimeRange,selectCompleteTimeRange,selectDynamicFilteringType,pleaseInput,checkForm,closeReason,materialFileName,viewEditSuccessful,adjustDataFiltering,adjustViewPermission,adjustViewName,deleteViewSuccessful,addViewSuccessful,currentUser,numIntegerExceedTen,numDecimalExceedSix,moreFilter,addFilterCriteria,maxFilterConditions,sum,resourceType,resourceName,processResourceList,beatPoint,leadTime,minimumTransferCount,loadingTime,unloadingTime,minimumTimeIntervalMinutes,devices,multipleFilesCannotBeSelected,zeroPositiveInteger,checkProcessResource,checkProcessResourceName,checkCalWorkingHours,calWorkHour"
@@ -0,0 +1 @@
1
+ {"module": "S3_0UC","version": "1.0.0"}
package/dist/style.css ADDED
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.table-box{border:1px solid #ebeef5;border-bottom:none}.no-padding{padding:0!important}.commonTable{width:100%;border-spacing:0}.commonTable{width:100%;margin:1rem 0}:deep(.tableHeader),:deep(.el-table th.el-table__cell.tableHeaderCell){background-color:#edf3f8;color:#303133}:deep(.sub-tableHeader),:deep(.el-table th.el-table__cell.sub-tableHeaderCell){background-color:#f1f2f4;color:#0009}:deep(.el-table__expanded-cell){padding:0}.commom-padding{padding:20px}.ma-0{margin:0!important}.ma-1{margin:4px!important}.ma-2{margin:8px!important}.ma-3{margin:12px!important}.ma-4{margin:16px!important}.ma-5{margin:20px!important}.ma-6{margin:24px!important}.ma-7{margin:28px!important}.ma-8{margin:32px!important}.ma-9{margin:36px!important}.ma-10{margin:40px!important}.ma-11{margin:44px!important}.ma-12{margin:48px!important}.ma-13{margin:52px!important}.ma-14{margin:56px!important}.ma-15{margin:60px!important}.ma-16{margin:64px!important}.ma-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:4px!important;margin-left:4px!important}.mx-2{margin-right:8px!important;margin-left:8px!important}.mx-3{margin-right:12px!important;margin-left:12px!important}.mx-4{margin-right:16px!important;margin-left:16px!important}.mx-5{margin-right:20px!important;margin-left:20px!important}.mx-6{margin-right:24px!important;margin-left:24px!important}.mx-7{margin-right:28px!important;margin-left:28px!important}.mx-8{margin-right:32px!important;margin-left:32px!important}.mx-9{margin-right:36px!important;margin-left:36px!important}.mx-10{margin-right:40px!important;margin-left:40px!important}.mx-11{margin-right:44px!important;margin-left:44px!important}.mx-12{margin-right:48px!important;margin-left:48px!important}.mx-13{margin-right:52px!important;margin-left:52px!important}.mx-14{margin-right:56px!important;margin-left:56px!important}.mx-15{margin-right:60px!important;margin-left:60px!important}.mx-16{margin-right:64px!important;margin-left:64px!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:4px!important;margin-bottom:4px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.my-3{margin-top:12px!important;margin-bottom:12px!important}.my-4{margin-top:16px!important;margin-bottom:16px!important}.my-5{margin-top:20px!important;margin-bottom:20px!important}.my-6{margin-top:24px!important;margin-bottom:24px!important}.my-7{margin-top:28px!important;margin-bottom:28px!important}.my-8{margin-top:32px!important;margin-bottom:32px!important}.my-9{margin-top:36px!important;margin-bottom:36px!important}.my-10{margin-top:40px!important;margin-bottom:40px!important}.my-11{margin-top:44px!important;margin-bottom:44px!important}.my-12{margin-top:48px!important;margin-bottom:48px!important}.my-13{margin-top:52px!important;margin-bottom:52px!important}.my-14{margin-top:56px!important;margin-bottom:56px!important}.my-15{margin-top:60px!important;margin-bottom:60px!important}.my-16{margin-top:64px!important;margin-bottom:64px!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:4px!important}.mt-2{margin-top:8px!important}.mt-3{margin-top:12px!important}.mt-4{margin-top:16px!important}.mt-5{margin-top:20px!important}.mt-6{margin-top:24px!important}.mt-7{margin-top:28px!important}.mt-8{margin-top:32px!important}.mt-9{margin-top:36px!important}.mt-10{margin-top:40px!important}.mt-11{margin-top:44px!important}.mt-12{margin-top:48px!important}.mt-13{margin-top:52px!important}.mt-14{margin-top:56px!important}.mt-15{margin-top:60px!important}.mt-16{margin-top:64px!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0!important}.mr-1{margin-right:4px!important}.mr-2{margin-right:8px!important}.mr-3{margin-right:12px!important}.mr-4{margin-right:16px!important}.mr-5{margin-right:20px!important}.mr-6{margin-right:24px!important}.mr-7{margin-right:28px!important}.mr-8{margin-right:32px!important}.mr-9{margin-right:36px!important}.mr-10{margin-right:40px!important}.mr-11{margin-right:44px!important}.mr-12{margin-right:48px!important}.mr-13{margin-right:52px!important}.mr-14{margin-right:56px!important}.mr-15{margin-right:60px!important}.mr-16{margin-right:64px!important}.mr-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:4px!important}.mb-2{margin-bottom:8px!important}.mb-3{margin-bottom:12px!important}.mb-4{margin-bottom:16px!important}.mb-5{margin-bottom:20px!important}.mb-6{margin-bottom:24px!important}.mb-7{margin-bottom:28px!important}.mb-8{margin-bottom:32px!important}.mb-9{margin-bottom:36px!important}.mb-10{margin-bottom:40px!important}.mb-11{margin-bottom:44px!important}.mb-12{margin-bottom:48px!important}.mb-13{margin-bottom:52px!important}.mb-14{margin-bottom:56px!important}.mb-15{margin-bottom:60px!important}.mb-16{margin-bottom:64px!important}.mb-auto{margin-bottom:auto!important}.ml-0{margin-left:0!important}.ml-1{margin-left:4px!important}.ml-2{margin-left:8px!important}.ml-3{margin-left:12px!important}.ml-4{margin-left:16px!important}.ml-5{margin-left:20px!important}.ml-6{margin-left:24px!important}.ml-7{margin-left:28px!important}.ml-8{margin-left:32px!important}.ml-9{margin-left:36px!important}.ml-10{margin-left:40px!important}.ml-11{margin-left:44px!important}.ml-12{margin-left:48px!important}.ml-13{margin-left:52px!important}.ml-14{margin-left:56px!important}.ml-15{margin-left:60px!important}.ml-16{margin-left:64px!important}.ml-auto{margin-left:auto!important}.mt-n1{margin-top:-4px!important}.mt-n2{margin-top:-8px!important}.mt-n3{margin-top:-12px!important}.mt-n4{margin-top:-16px!important}.mt-n5{margin-top:-20px!important}.mt-n6{margin-top:-24px!important}.mt-n7{margin-top:-28px!important}.mt-n8{margin-top:-32px!important}.mt-n9{margin-top:-36px!important}.mt-n10{margin-top:-40px!important}.mt-n11{margin-top:-44px!important}.mt-n12{margin-top:-48px!important}.mt-n13{margin-top:-52px!important}.mt-n14{margin-top:-56px!important}.mt-n15{margin-top:-60px!important}.mt-n16{margin-top:-64px!important}.mr-n1{margin-right:-4px!important}.mr-n2{margin-right:-8px!important}.mr-n3{margin-right:-12px!important}.mr-n4{margin-right:-16px!important}.mr-n5{margin-right:-20px!important}.mr-n6{margin-right:-24px!important}.mr-n7{margin-right:-28px!important}.mr-n8{margin-right:-32px!important}.mr-n9{margin-right:-36px!important}.mr-n10{margin-right:-40px!important}.mr-n11{margin-right:-44px!important}.mr-n12{margin-right:-48px!important}.mr-n13{margin-right:-52px!important}.mr-n14{margin-right:-56px!important}.mr-n15{margin-right:-60px!important}.mr-n16{margin-right:-64px!important}.mb-n1{margin-bottom:-4px!important}.mb-n2{margin-bottom:-8px!important}.mb-n3{margin-bottom:-12px!important}.mb-n4{margin-bottom:-16px!important}.mb-n5{margin-bottom:-20px!important}.mb-n6{margin-bottom:-24px!important}.mb-n7{margin-bottom:-28px!important}.mb-n8{margin-bottom:-32px!important}.mb-n9{margin-bottom:-36px!important}.mb-n10{margin-bottom:-40px!important}.mb-n11{margin-bottom:-44px!important}.mb-n12{margin-bottom:-48px!important}.mb-n13{margin-bottom:-52px!important}.mb-n14{margin-bottom:-56px!important}.mb-n15{margin-bottom:-60px!important}.mb-n16{margin-bottom:-64px!important}.ml-n1{margin-left:-4px!important}.ml-n2{margin-left:-8px!important}.ml-n3{margin-left:-12px!important}.ml-n4{margin-left:-16px!important}.ml-n5{margin-left:-20px!important}.ml-n6{margin-left:-24px!important}.ml-n7{margin-left:-28px!important}.ml-n8{margin-left:-32px!important}.ml-n9{margin-left:-36px!important}.ml-n10{margin-left:-40px!important}.ml-n11{margin-left:-44px!important}.ml-n12{margin-left:-48px!important}.ml-n13{margin-left:-52px!important}.ml-n14{margin-left:-56px!important}.ml-n15{margin-left:-60px!important}.ml-n16{margin-left:-64px!important}.pt-0{padding-top:0!important}.pt-1{padding-top:4px!important}.pt-2{padding-top:8px!important}.pt-3{padding-top:12px!important}.pt-4{padding-top:16px!important}.pt-5{padding-top:20px!important}.pt-6{padding-top:24px!important}.pt-7{padding-top:28px!important}.pt-8{padding-top:32px!important}.pt-9{padding-top:36px!important}.pt-10{padding-top:40px!important}.pt-11{padding-top:44px!important}.pt-12{padding-top:48px!important}.pt-13{padding-top:52px!important}.pt-14{padding-top:56px!important}.pt-15{padding-top:60px!important}.pt-16{padding-top:64px!important}.pr-0{padding-right:0!important}.pr-1{padding-right:4px!important}.pr-2{padding-right:8px!important}.pr-3{padding-right:12px!important}.pr-4{padding-right:16px!important}.pr-5{padding-right:20px!important}.pr-6{padding-right:24px!important}.pr-7{padding-right:28px!important}.pr-8{padding-right:32px!important}.pr-9{padding-right:36px!important}.pr-10{padding-right:40px!important}.pr-11{padding-right:44px!important}.pr-12{padding-right:48px!important}.pr-13{padding-right:52px!important}.pr-14{padding-right:56px!important}.pr-15{padding-right:60px!important}.pr-16{padding-right:64px!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:4px!important}.pb-2{padding-bottom:8px!important}.pb-3{padding-bottom:12px!important}.pb-4{padding-bottom:16px!important}.pb-5{padding-bottom:20px!important}.pb-6{padding-bottom:24px!important}.pb-7{padding-bottom:28px!important}.pb-8{padding-bottom:32px!important}.pb-9{padding-bottom:36px!important}.pb-10{padding-bottom:40px!important}.pb-11{padding-bottom:44px!important}.pb-12{padding-bottom:48px!important}.pb-13{padding-bottom:52px!important}.pb-14{padding-bottom:56px!important}.pb-15{padding-bottom:60px!important}.pb-16{padding-bottom:64px!important}.pl-0{padding-left:0!important}.pl-1{padding-left:4px!important}.pl-2{padding-left:8px!important}.pl-3{padding-left:12px!important}.pl-4{padding-left:16px!important}.pl-5{padding-left:20px!important}.pl-6{padding-left:24px!important}.pl-7{padding-left:28px!important}.pl-8{padding-left:32px!important}.pl-9{padding-left:36px!important}.pl-10{padding-left:40px!important}.pl-11{padding-left:44px!important}.pl-12{padding-left:48px!important}.pl-13{padding-left:52px!important}.pl-14{padding-left:56px!important}.pl-15{padding-left:60px!important}.pl-16{padding-left:64px!important}.el-overlay-dialog{display:flex;align-items:center;justify-content:center}.el-dialog{padding:0;border-radius:10px!important;margin:0!important;display:flex;flex-direction:column;max-height:calc(100vh - 5rem)}.el-dialog__header{height:3rem;background-color:#4481b8!important;color:#fff!important;padding:0;display:flex;align-items:center;justify-content:center;border-radius:10px 10px 0 0!important;font-size:18px;font-weight:600;flex-shrink:0}.el-dialog__title{color:#fff!important}.el-dialog__body{padding:1rem;overflow:hidden;flex:1;display:flex;flex-direction:column;height:100%;overflow-y:auto}.el-dialog__footer{padding:0 0 20px;flex-shrink:0}.el-dialog__close{color:#fff!important}html{font-size:14px!important}body{margin:0;background-color:#fff}#S3_0UC_app{margin:0;width:100%;height:calc(100vh - 5rem);position:relative}::-webkit-scrollbar{width:8px;height:1px}::-webkit-scrollbar-thumb{background-color:#eaecf1;border-radius:3px}.el-table__body-wrapper::-webkit-scrollbar{width:10px;height:10px}.el-table__body-wrapper::-webkit-scrollbar-thumb{background-color:#a1a3a9;border-radius:3px}.tip-confirm-dialog .el-message-box__content .el-message-box__container .el-message-box__message p{word-break:break-all}.tableHeaderCell{background-color:#edf3f8!important}.disabled-color[data-v-3af3d4a7]{color:#ccc!important;cursor:not-allowed!important}[data-v-3af3d4a7] .el-space--vertical{padding:5px 0 0 16px;position:relative;top:5px;z-index:9999}.dialog-footer[data-v-342a6cdf]{text-align:center;margin:0 auto;margin-top:1rem}[data-v-342a6cdf]::-webkit-scrollbar{width:8px}[data-v-342a6cdf]::-webkit-scrollbar-thumb{background-color:#eaecf1;border-radius:3px}.el-table__body-wrapper[data-v-342a6cdf]::-webkit-scrollbar{width:10px;height:10px}.el-table__body-wrapper[data-v-342a6cdf]::-webkit-scrollbar-thumb{background-color:#a1a3a9;border-radius:3px}[data-v-342a6cdf] .el-card__body{padding-bottom:0}.box1[data-v-cc7d1264]{width:calc(100% - 30rem);position:absolute;right:0;top:-2rem;display:flex;justify-content:flex-end;z-index:200}.button-container[data-v-cc7d1264]{min-width:240px}.pagination-table[data-v-48b54660]{display:flex;justify-content:end;width:100%;margin:0;box-sizing:border-box;position:relative}.slot_style[data-v-48b54660]{width:15rem;position:absolute;left:0}.el-divider[data-v-c926e19e]{margin:4px 0 12px}.custom-title[data-v-c926e19e]{font-size:16px;text-align:center}.input-max-width[data-v-c926e19e]{max-width:96%}.el-form-item__content[data-v-337230fc]{width:100%}.title-content[data-v-337230fc]{max-width:50%;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:20px!important}.cursor[data-v-337230fc]{cursor:pointer}.full_page[data-v-5ff2c3bf]{width:100%;height:calc(100% + 1rem);position:absolute;top:-3rem;z-index:300;background:#fff}.title_name[data-v-5ff2c3bf]{float:left;height:1.5rem;text-align:center;font-size:15px;font-weight:600;line-height:1.5rem;border-left:5px solid rgb(3,3,151)}.bodydivcontent[data-v-ee82f00c]{height:100%}.dialog-footer[data-v-ee82f00c]{margin:0 auto;text-align:center;height:40px}.filter-item[data-v-fd46486f]{background-color:#f9fafb;border-radius:6px}.drawer-box[data-v-6ca8c1cc]{width:100%}.view-box[data-v-6ca8c1cc]{margin-top:-2rem;margin-left:-1rem;width:100%;height:100%}.view-title[data-v-6ca8c1cc]{display:flex;justify-content:space-between;align-items:center}.view-content[data-v-6ca8c1cc]{display:flex;width:100%;height:calc(100% - 1.5rem)}.el-menu-vertical-demo[data-v-6ca8c1cc]{width:150px;border-right:1px solid #eee}.drawer-content[data-v-6ca8c1cc]{width:90%;height:95%;overflow:auto;margin-left:10px}.icon-options[data-v-6ca8c1cc]{display:flex;gap:12px}.icon-options .el-button[data-v-6ca8c1cc]{width:36px;height:36px;border-radius:4px;display:flex;align-items:center;justify-content:center}.icon-options .el-button.active[data-v-6ca8c1cc]{border-width:2px}.radio-icon[data-v-6ca8c1cc]{font-size:18px}.drawer-footer[data-v-6ca8c1cc]{position:absolute;bottom:1rem;right:2rem}.cursor[data-v-6ca8c1cc]{cursor:pointer}[data-v-83cfc592] .drawer_body_class{margin:0;padding:5px}.drawer_header_class_content[data-v-83cfc592]{display:flex;justify-content:space-between;align-items:center}.drawer_title[data-v-83cfc592]{display:flex;align-items:center}.title_text_right_icon[data-v-83cfc592]{color:#909399;font-size:1rem}.title_text[data-v-83cfc592]{color:#165389;font-weight:700;margin:0 .5rem}.list-body[data-v-83cfc592]{height:calc(100% - 40px)}.view-operation-record[data-v-51080841]{padding:16px 0;height:calc(100% - 26px);display:flex;flex-direction:column}.filter-card[data-v-51080841]{background-color:#fff;flex-shrink:0}.query-form[data-v-51080841]{margin-bottom:0}.button-group[data-v-51080841]{margin-top:10px}.table-container[data-v-51080841]{flex:1;display:flex;flex-direction:column;background-color:#fff;margin-top:16px;min-height:0}.table-wrapper[data-v-51080841]{flex:1;min-height:0}.table-wrapper[data-v-51080841] .el-table{height:100%!important}.pagination-wrapper[data-v-51080841]{flex-shrink:0;background-color:#fff;border-top:1px solid #ebeef5}.flex-center[data-v-67977136]{display:flex;align-items:center}.view-box[data-v-67977136]{overflow-x:auto}.view-box[data-v-67977136] .el-tabs{max-width:80%;overflow:hidden}.view-more[data-v-67977136]{margin-left:20px;margin-top:-15px}.more-txt[data-v-67977136]{max-width:80px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.plus-icon[data-v-67977136]{margin-left:20px;margin-top:-15px}.fixed-width[data-v-67977136]{width:100px;box-sizing:border-box}.tab-title[data-v-67977136]{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-left:5px;width:75px;text-align:center}.tab-label-container[data-v-67977136]{display:flex;align-items:center;position:relative}.empty-filter-tip[data-v-67977136]{color:#999;font-size:12px;padding:4px 0}.span-box span[data-v-67977136]:first-child{color:#909399;margin-right:5px}.view-manager-container[data-v-93fcef4d]{width:100%;height:100%;padding:1rem;box-sizing:border-box}.header-buttons-container[data-v-b25d4a37]{display:flex;padding:1rem;justify-content:flex-end;box-sizing:border-box}.header-button-item[data-v-b25d4a37]{display:flex;align-items:center}.margin_right_1rem[data-v-b25d4a37]{margin-right:1rem}.table-box[data-v-eaa1639a]{border:1px solid #ebeef5;border-bottom:none}.no-padding[data-v-eaa1639a]{padding:0!important}.commonTable[data-v-eaa1639a]{width:100%;border-spacing:0}.commonTable[data-v-eaa1639a]{width:100%;margin:1rem 0}[data-v-eaa1639a] .tableHeader,[data-v-eaa1639a] .el-table th.el-table__cell.tableHeaderCell{background-color:#edf3f8;color:#303133}[data-v-eaa1639a] .sub-tableHeader,[data-v-eaa1639a] .el-table th.el-table__cell.sub-tableHeaderCell{background-color:#f1f2f4;color:#0009}[data-v-eaa1639a] .el-table__expanded-cell{padding:0}.table-wrapper[data-v-eaa1639a]{height:100%;display:flex;flex-direction:column;overflow:hidden}.table-wrapper .table-content[data-v-eaa1639a]{flex:1;overflow:hidden}.table-wrapper .file-name[data-v-eaa1639a]{color:#125088;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-wrapper[data-v-eaa1639a] .el-table{--el-table-header-bg-color: #edf3f8;--el-table-header-text-color: #303133;--el-table-border-color: #ebeef5;--el-table-row-hover-bg-color: #f5f7fa;height:100%}.table-wrapper[data-v-eaa1639a] .el-table .el-table__body-wrapper{scrollbar-width:thin}.table-wrapper[data-v-eaa1639a] .el-table .el-table__body-wrapper::-webkit-scrollbar{width:6px;height:6px}.table-wrapper[data-v-eaa1639a] .el-table .el-table__body-wrapper::-webkit-scrollbar-thumb{background:#c0c4cc;border-radius:3px}.table-wrapper[data-v-eaa1639a] .el-table .el-table__fixed-right .el-button-group :deep(.el-button){padding:4px 8px}.table-wrapper[data-v-eaa1639a] .el-table .el-table__fixed-right .el-button-group :deep(.el-button):hover{color:var(--el-color-primary);background-color:var(--el-fill-color-light)}.table-box[data-v-f41f8962]{border:1px solid #ebeef5;border-bottom:none}.no-padding[data-v-f41f8962]{padding:0!important}.commonTable[data-v-f41f8962]{width:100%;border-spacing:0}.commonTable[data-v-f41f8962]{width:100%;margin:1rem 0}[data-v-f41f8962] .tableHeader,[data-v-f41f8962] .el-table th.el-table__cell.tableHeaderCell{background-color:#edf3f8;color:#303133}[data-v-f41f8962] .sub-tableHeader,[data-v-f41f8962] .el-table th.el-table__cell.sub-tableHeaderCell{background-color:#f1f2f4;color:#0009}[data-v-f41f8962] .el-table__expanded-cell{padding:0}.statusColor[data-v-f41f8962]{min-width:100px;height:40px;text-align:center;line-height:40px}.a-text-class[data-v-f41f8962]{color:#409eff;cursor:pointer;text-decoration:underline}.ellipsis-single-line[data-v-f41f8962]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}