kz-ui-base 1.0.45 → 1.0.47

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 (310) hide show
  1. package/package.json +1 -1
  2. package/views/bd/attribute/index.vue +559 -0
  3. package/views/bd/collectionAgreement/add.vue +270 -0
  4. package/views/bd/collectionAgreement/index.vue +176 -0
  5. package/views/bd/costCenter/components/costCenterModal.vue +141 -0
  6. package/views/bd/costCenter/index.vue +304 -0
  7. package/views/bd/currency/index.vue +180 -0
  8. package/views/bd/customer/components/CustomerEditDialog.vue +274 -0
  9. package/views/bd/customer/components/customer-info-tab/AddressInfoTab.vue +91 -0
  10. package/views/bd/customer/components/customer-info-tab/BankInfoTab.vue +94 -0
  11. package/views/bd/customer/components/customer-info-tab/BaseInfoTab.vue +153 -0
  12. package/views/bd/customer/components/customer-info-tab/BusinessInfoTab.vue +140 -0
  13. package/views/bd/customer/components/customer-info-tab/ContactInfoTab.vue +103 -0
  14. package/views/bd/customer/components/customer-info-tab/SalesmanInfoTab.vue +87 -0
  15. package/views/bd/customer/index.vue +150 -0
  16. package/views/bd/customerArea/index.vue +392 -0
  17. package/views/bd/customerIndustry/index.vue +392 -0
  18. package/views/bd/customeraddress/index.vue +76 -0
  19. package/views/bd/customerbank/index.vue +77 -0
  20. package/views/bd/customercontacts/index.vue +79 -0
  21. package/views/bd/customersalesman/index.vue +47 -0
  22. package/views/bd/employee/index.vue +219 -0
  23. package/views/bd/exchangeRate/index.vue +232 -0
  24. package/views/bd/item/dialog/itemAttachFileDialog.vue +163 -0
  25. package/views/bd/item/dialog/itemDetailDialog.vue +1109 -0
  26. package/views/bd/item/dialog/itemEditDialog.vue +1247 -0
  27. package/views/bd/item/dialog/itemInsertDialog.vue +1324 -0
  28. package/views/bd/item/index.vue +535 -0
  29. package/views/bd/itemCategory/components/detail.vue +492 -0
  30. package/views/bd/itemCategory/components/modify.vue +1065 -0
  31. package/views/bd/itemCategory/index.vue +397 -0
  32. package/views/bd/itemClass/index.vue +445 -0
  33. package/views/bd/itemList/index.vue +445 -0
  34. package/views/bd/itemcategorysoattribute/index.vue +56 -0
  35. package/views/bd/numberingrule/index.vue +191 -0
  36. package/views/bd/productLine/index.vue +387 -0
  37. package/views/bd/productusage/index.vue +579 -0
  38. package/views/bd/productusage/productUsageEditModal.vue +96 -0
  39. package/views/bd/project/index.vue +145 -0
  40. package/views/bd/settlementMethod/index.vue +210 -0
  41. package/views/bd/uom/UomEditDialog.vue +157 -0
  42. package/views/bd/uom/index.vue +256 -0
  43. package/views/bd/vendor/components/VendorEditDialog.vue +203 -0
  44. package/views/bd/vendor/components/vendor-info-tab/ContactInfoTab.vue +74 -0
  45. package/views/bd/vendor/index.vue +140 -0
  46. package/views/bd/workGroup/index.vue +651 -0
  47. package/views/eam/annualTesting/LubWaitPartsApplyDialog.vue +767 -0
  48. package/views/eam/annualTesting/SpareDialog.vue +476 -0
  49. package/views/eam/annualTesting/annualList/LubWaitPartsApplyDialog.vue +938 -0
  50. package/views/eam/annualTesting/annualList/index.vue +1019 -0
  51. package/views/eam/annualTesting/index.vue +698 -0
  52. package/views/eam/annualTesting/indexAdd.vue +1195 -0
  53. package/views/eam/annualTesting/indexList.vue +1026 -0
  54. package/views/eam/annualTesting/indexMaintenance.vue +1340 -0
  55. package/views/eam/annualTesting/issued.vue +709 -0
  56. package/views/eam/asset/assetAttachment/assetBomAttachment.vue +253 -0
  57. package/views/eam/asset/assetAttachment/fileUpload.vue +238 -0
  58. package/views/eam/asset/assetAttachment/index.vue +360 -0
  59. package/views/eam/asset/assetAttachment2/AssetAttachmentDialog.vue +199 -0
  60. package/views/eam/asset/assetAttachment2/assetBomAttachment.vue +253 -0
  61. package/views/eam/asset/assetAttachment2/fileUpload.vue +296 -0
  62. package/views/eam/asset/assetAttachment2/index.vue +477 -0
  63. package/views/eam/asset/assetAttachment2/index2.vue +152 -0
  64. package/views/eam/asset/assetBaseInfo/components/applyComment.vue +265 -0
  65. package/views/eam/asset/assetBaseInfo/convert.vue +1297 -0
  66. package/views/eam/asset/assetBaseInfo/idle.vue +612 -0
  67. package/views/eam/asset/assetBaseInfo/index.vue +1486 -0
  68. package/views/eam/asset/assetBaseInfo/lent.vue +662 -0
  69. package/views/eam/asset/assetBaseInfo/newPurchase.vue +1379 -0
  70. package/views/eam/asset/assetBaseInfo/permanent.vue +624 -0
  71. package/views/eam/asset/assetBaseInfo/safeAttchment.vue +368 -0
  72. package/views/eam/asset/assetBaseInfo/special.vue +645 -0
  73. package/views/eam/asset/assetBaseInfo/usage.vue +1062 -0
  74. package/views/eam/asset/assetBaseInfo/usageInternal.vue +1080 -0
  75. package/views/eam/asset/assetBaseInfo/value.vue +615 -0
  76. package/views/eam/asset/assetDetail/index.vue +198 -0
  77. package/views/eam/asset/assetDetail/safeAttachment.vue +41 -0
  78. package/views/eam/asset/assetInfo/attachment.vue +178 -0
  79. package/views/eam/asset/assetInfo/bom.vue +1170 -0
  80. package/views/eam/asset/assetInfo/components/PlanDetailsDialog.vue +236 -0
  81. package/views/eam/asset/assetInfo/components/SpareBomDialog.vue +448 -0
  82. package/views/eam/asset/assetInfo/components/SpareDialog.vue +450 -0
  83. package/views/eam/asset/assetInfo/components/TaskDetailsDialog.vue +529 -0
  84. package/views/eam/asset/assetInfo/components/common.js +30 -0
  85. package/views/eam/asset/assetInfo/components/infoDialog.vue +179 -0
  86. package/views/eam/asset/assetInfo/dailyPoint.vue +1487 -0
  87. package/views/eam/asset/assetInfo/index.vue +1845 -0
  88. package/views/eam/asset/assetInfo/info.vue +1798 -0
  89. package/views/eam/asset/assetInfo/lubrication.vue +2259 -0
  90. package/views/eam/asset/assetInfo/maintain.vue +1958 -0
  91. package/views/eam/asset/assetInfo/point.vue +1844 -0
  92. package/views/eam/asset/assetInfo/polling.vue +1853 -0
  93. package/views/eam/asset/assetInfo/printDetail.vue +115 -0
  94. package/views/eam/asset/assetInfo/printDetailcopy.vue +132 -0
  95. package/views/eam/asset/assetInfo/resume.vue +421 -0
  96. package/views/eam/asset/assetInfo/testingStandards.vue +2155 -0
  97. package/views/eam/asset/assetList/convert.vue +921 -0
  98. package/views/eam/asset/assetList/idle.vue +787 -0
  99. package/views/eam/asset/assetList/index.vue +1018 -0
  100. package/views/eam/asset/assetList/lent.vue +778 -0
  101. package/views/eam/asset/assetList/newPurchase.vue +952 -0
  102. package/views/eam/asset/assetList/permanent.vue +790 -0
  103. package/views/eam/asset/assetList/printDetail.vue +193 -0
  104. package/views/eam/asset/assetList/safeAttachment.vue +552 -0
  105. package/views/eam/asset/assetList/special.vue +794 -0
  106. package/views/eam/asset/assetList/usage.vue +875 -0
  107. package/views/eam/asset/assetList/usageInternal.vue +785 -0
  108. package/views/eam/asset/assetList/value.vue +767 -0
  109. package/views/eam/asset/assetListInfo/index.vue +252 -0
  110. package/views/eam/asset/assetListLog/convert.vue +324 -0
  111. package/views/eam/asset/assetListLog/idle.vue +323 -0
  112. package/views/eam/asset/assetListLog/index.vue +345 -0
  113. package/views/eam/asset/assetListLog/lent.vue +328 -0
  114. package/views/eam/asset/assetListLog/newPurchase.vue +324 -0
  115. package/views/eam/asset/assetListLog/permanent.vue +346 -0
  116. package/views/eam/asset/assetListLog/special.vue +325 -0
  117. package/views/eam/asset/assetListLog/usage.vue +327 -0
  118. package/views/eam/asset/assetListLog/value.vue +324 -0
  119. package/views/eam/asset/assetStandardList/index.vue +876 -0
  120. package/views/eam/asset/bom/assetBom.vue +2061 -0
  121. package/views/eam/asset/bom/assetBomReadOnly.vue +2054 -0
  122. package/views/eam/asset/category/index.vue +821 -0
  123. package/views/eam/asset/category/readOnly.vue +823 -0
  124. package/views/eam/asset/construction/index.vue +710 -0
  125. package/views/eam/asset/deviceCategory/index.vue +583 -0
  126. package/views/eam/asset/emAssetPrintItems/index.vue +395 -0
  127. package/views/eam/asset/generalAssetUpload/index.vue +1049 -0
  128. package/views/eam/asset/location/index.vue +500 -0
  129. package/views/eam/asset/newPurchaseAssetUpload/index.vue +916 -0
  130. package/views/eam/asset/part/partSelect.vue +126 -0
  131. package/views/eam/asset/testDIa.vue +133 -0
  132. package/views/eam/asset/userOwnership/index.vue +761 -0
  133. package/views/eam/assetListReport/DeviceInfoPanel.vue +146 -0
  134. package/views/eam/assetListReport/index.vue +311 -0
  135. package/views/eam/assetReport/DeviceInfoPanel.vue +144 -0
  136. package/views/eam/assetReport/DeviceOperateStatus.vue +44 -0
  137. package/views/eam/assetReport/components/AssetPicAndStatus.vue +41 -0
  138. package/views/eam/assetReport/components/AvailabilityAndProficiency.vue +112 -0
  139. package/views/eam/assetReport/components/BootTimeAndPayloadWeight.vue +51 -0
  140. package/views/eam/assetReport/components/MaintenanceStatus.vue +185 -0
  141. package/views/eam/assetReport/components/RealTimeTemperature.vue +45 -0
  142. package/views/eam/assetReport/index.vue +268 -0
  143. package/views/eam/assetattribute/index.vue +67 -0
  144. package/views/eam/assetcategoryattribute/index.vue +58 -0
  145. package/views/eam/components/DeviceStatus.vue +54 -0
  146. package/views/eam/components/archives/index.vue +8 -0
  147. package/views/eam/equipmentInspection/inspectionPlan/components/SpecialSendDialogCreated.vue +890 -0
  148. package/views/eam/equipmentInspection/inspectionPlan/components/index.vue +1542 -0
  149. package/views/eam/equipmentInspection/inspectionPlan/index.vue +656 -0
  150. package/views/eam/equipmentInspection/lims/components/LimsDetailDialog.vue +323 -0
  151. package/views/eam/equipmentInspection/lims/index.vue +267 -0
  152. package/views/eam/equipmentInspection/special/components/SpecialCancelDialog.vue +137 -0
  153. package/views/eam/equipmentInspection/special/components/SpecialSendDialog.vue +380 -0
  154. package/views/eam/equipmentInspection/special/index.vue +276 -0
  155. package/views/eam/equipmentInspection/specialNew/components/EquipmentLocation.vue +312 -0
  156. package/views/eam/equipmentInspection/specialNew/components/InspectionReport.vue +977 -0
  157. package/views/eam/equipmentInspection/specialNew/components/SpecialCancelDialog.vue +137 -0
  158. package/views/eam/equipmentInspection/specialNew/components/SpecialSendDialog.vue +456 -0
  159. package/views/eam/equipmentInspection/specialNew/components/SpecialSendDialogRegister.vue +439 -0
  160. package/views/eam/equipmentInspection/specialNew/index.vue +575 -0
  161. package/views/eam/flowable/definition/index.vue +584 -0
  162. package/views/eam/flowable/definition/model.vue +145 -0
  163. package/views/eam/flowable/finished/index.vue +352 -0
  164. package/views/eam/flowable/form/index.vue +308 -0
  165. package/views/eam/flowable/process/index.vue +490 -0
  166. package/views/eam/flowable/record/components/Tip.vue +235 -0
  167. package/views/eam/flowable/record/components/dialog/ExceptionDetailsDialog.vue +308 -0
  168. package/views/eam/flowable/record/components/lubrication.vue +2115 -0
  169. package/views/eam/flowable/record/components/maintain.vue +2014 -0
  170. package/views/eam/flowable/record/components/point.vue +1677 -0
  171. package/views/eam/flowable/record/components/polling.vue +1735 -0
  172. package/views/eam/flowable/record/components/regularPlanAudit.vue +639 -0
  173. package/views/eam/flowable/record/components/sparePartsDemandList.vue +259 -0
  174. package/views/eam/flowable/record/components/taskAudit.vue +555 -0
  175. package/views/eam/flowable/record/flow.vue +28 -0
  176. package/views/eam/flowable/record/flowview.vue +243 -0
  177. package/views/eam/flowable/record/index.vue +959 -0
  178. package/views/eam/flowable/todo/index.vue +297 -0
  179. package/views/eam/front/index.vue +17 -0
  180. package/views/eam/idle/idleApply/components/idleApplyAddDialog.vue +237 -0
  181. package/views/eam/idle/idleApply/components/idleApplyCancelDialog.vue +6 -0
  182. package/views/eam/idle/idleApply/index.vue +0 -0
  183. package/views/eam/indexPage/assetCurrentStatus/index.vue +123 -0
  184. package/views/eam/indexPage/assetRunningStatus/index.vue +145 -0
  185. package/views/eam/indexPage/index.vue +78 -0
  186. package/views/eam/indexPage/maintenanceStatistic/index.vue +139 -0
  187. package/views/eam/indexPage/messages/index.vue +106 -0
  188. package/views/eam/indexPage/monthFaultRanking/index.vue +168 -0
  189. package/views/eam/indexPage/monthMaintenanceCalendar/index.vue +182 -0
  190. package/views/eam/indexPage/monthRepairRequest/index.vue +323 -0
  191. package/views/eam/indexPage/monthStopRanking/index.vue +192 -0
  192. package/views/eam/indexPage/monthlyAssetAvailability/index.vue +203 -0
  193. package/views/eam/indexPage/panelContainer.vue +87 -0
  194. package/views/eam/indexPage/todayAlarm/index.vue +165 -0
  195. package/views/eam/inventory/assetInventory/index.vue +381 -0
  196. package/views/eam/inventory/assetInventoryDetail/detailAdd.vue +709 -0
  197. package/views/eam/inventory/assetInventoryDetail/index.vue +625 -0
  198. package/views/eam/lubrication/lubWaitDispatch/LubWaitCancelBatchDialog.vue +200 -0
  199. package/views/eam/lubrication/lubWaitDispatch/LubWaitCancelDialog.vue +146 -0
  200. package/views/eam/lubrication/lubWaitDispatch/LubWaitDispatchBatchDialog.vue +293 -0
  201. package/views/eam/lubrication/lubWaitDispatch/LubWaitDispatchDialog.vue +558 -0
  202. package/views/eam/lubrication/lubWaitDispatch/LubWaitPartsApplyDialog.vue +508 -0
  203. package/views/eam/lubrication/lubWaitDispatch/index.vue +598 -0
  204. package/views/eam/lubrication/lubWaitHandle/LubWaitHandleCancelBatchDialog.vue +198 -0
  205. package/views/eam/lubrication/lubWaitHandle/LubWaitHandleCancelDialog.vue +139 -0
  206. package/views/eam/lubrication/lubWaitHandle/LubWaitHandleReportDialog.vue +600 -0
  207. package/views/eam/lubrication/lubWaitHandle/index.vue +486 -0
  208. package/views/eam/lubrication/lubricationMoon/LubricationMoonCancelPlanDialog.vue +122 -0
  209. package/views/eam/lubrication/lubricationMoon/LubricationMoonDetailDialog.vue +82 -0
  210. package/views/eam/lubrication/lubricationMoon/LubricationMoonSubmitDialog.vue +149 -0
  211. package/views/eam/lubrication/lubricationMoon/index.vue +592 -0
  212. package/views/eam/lubrication/lubricationSummar/index.vue +482 -0
  213. package/views/eam/lubrication/lubricationTemporary/index.vue +381 -0
  214. package/views/eam/lubrication/lubricationYear/LubricationCancelDialog.vue +166 -0
  215. package/views/eam/lubrication/lubricationYear/LubricationDetailDialog.vue +250 -0
  216. package/views/eam/lubrication/lubricationYear/LubricationYearExportDialog.vue +151 -0
  217. package/views/eam/lubrication/lubricationYear/index.vue +542 -0
  218. package/views/eam/mst/emMstAttachAuthority/index.vue +244 -0
  219. package/views/eam/mst/emMstFactory/index.vue +379 -0
  220. package/views/eam/mst/emMstLine/index.vue +395 -0
  221. package/views/eam/mst/emMstLocation/index copy 2.vue +460 -0
  222. package/views/eam/mst/emMstLocation/index copy.vue +461 -0
  223. package/views/eam/mst/emMstLocation/index.vue +591 -0
  224. package/views/eam/mst/emSysParameter/index.vue +259 -0
  225. package/views/eam/mst/emSysParameter/modal/modalEditEamSysParameter.vue +363 -0
  226. package/views/eam/repair/repairApply/components/RepairApplyAddDialog.vue +765 -0
  227. package/views/eam/repair/repairApply/components/RepairApplyCancelDialog.vue +139 -0
  228. package/views/eam/repair/repairApply/index copy.vue +1574 -0
  229. package/views/eam/repair/repairApply/index.vue +601 -0
  230. package/views/eam/repair/repairCalendar/RepairCalendarReportDialog.vue +989 -0
  231. package/views/eam/repair/repairCalendar/index.vue +875 -0
  232. package/views/eam/repair/repairDispatch/components/RepairApplyPartsDialog.vue +474 -0
  233. package/views/eam/repair/repairDispatch/components/RepairDispatchCancelDialog.vue +140 -0
  234. package/views/eam/repair/repairDispatch/components/RepairSelectPartsDialog.vue +332 -0
  235. package/views/eam/repair/repairDispatch/components/RepariApplyPartsDialog.vue +474 -0
  236. package/views/eam/repair/repairDispatch/index.vue +1820 -0
  237. package/views/eam/repair/repairDispatch/index_old.vue +2005 -0
  238. package/views/eam/repair/repairPlan/components/PlanBottomEdit.vue +291 -0
  239. package/views/eam/repair/repairPlan/components/PlanSubmitDialog.vue +126 -0
  240. package/views/eam/repair/repairPlan/components/PlanTableCalendar.vue +172 -0
  241. package/views/eam/repair/repairPlan/components/PlanTableList.vue +143 -0
  242. package/views/eam/repair/repairPlan/components/RepairPlanDetailDialog.vue +72 -0
  243. package/views/eam/repair/repairPlan/index.vue +308 -0
  244. package/views/eam/repair/repairScrap/index.vue +557 -0
  245. package/views/eam/reportCenter/assetStatusAnalysis/index.vue +476 -0
  246. package/views/eam/reportCenter/costing/components/deviceCosting.vue +914 -0
  247. package/views/eam/reportCenter/costing/index.vue +807 -0
  248. package/views/eam/reportCenter/equipFailure/index.vue +615 -0
  249. package/views/eam/reportCenter/faultAnalysis/index.vue +1231 -0
  250. package/views/eam/reportCenter/kpiFailure/index.vue +583 -0
  251. package/views/eam/reportCenter/sparePartsRate/index.vue +715 -0
  252. package/views/eam/reportCenter/workOrderAnalysis/index.vue +696 -0
  253. package/views/eam/scrap/scrapApply/component/ScrapApplyCancelDialog.vue +141 -0
  254. package/views/eam/scrap/scrapApply/component/ScrapApplyEditDialog.vue +530 -0
  255. package/views/eam/scrap/scrapApply/index copy.vue +556 -0
  256. package/views/eam/scrap/scrapApply/index.vue +386 -0
  257. package/views/eam/sparePartMain/SparePartMain.vue +58 -0
  258. package/views/eam/sparePartMain/sparePartBasic/SparePartBasicMain.vue +58 -0
  259. package/views/eam/spareParts/sparePartsBasic/index.vue +676 -0
  260. package/views/eam/spareParts/sparePartsDemand/index.vue +658 -0
  261. package/views/eam/spareParts/sparePartsInventory/index.vue +425 -0
  262. package/views/eam/spareParts/sparePartsLibrary/index.vue +426 -0
  263. package/views/eam/spareParts/sparePartsRecord/index.vue +476 -0
  264. package/views/eam/spareParts/sparePartsType/index.vue +654 -0
  265. package/views/eam/spareParts/sparePartsUse/index.vue +550 -0
  266. package/views/eam/spotCheck/components/InspectionCancelDialog.vue +162 -0
  267. package/views/eam/spotCheck/inspectionStatus/DetailDialog.vue +364 -0
  268. package/views/eam/spotCheck/inspectionStatus/UnassignedWorkersDialog.vue +256 -0
  269. package/views/eam/spotCheck/inspectionStatus/index.vue +989 -0
  270. package/views/eam/spotCheck/planAction/index.vue +1193 -0
  271. package/views/eam/spotCheck/specialEquipmentInspect/index.vue +928 -0
  272. package/views/eam/spotCheck/spotCheckMoon/index.vue +1235 -0
  273. package/views/eam/spotCheck/spotCheckUnusual/index.vue +1131 -0
  274. package/views/eam/spotCheck/spotCheckYear/index.vue +1123 -0
  275. package/views/eam/spotCheck/waitDispatch/index.vue +1554 -0
  276. package/views/eam/spotCheck/waitHandle/index.vue +2058 -0
  277. package/views/eam/tallyModule/dailyWaitHandle/index.vue +1816 -0
  278. package/views/eam/tallyModule/planAction/components/planActionAddDialog.vue +414 -0
  279. package/views/eam/tallyModule/planAction/index.vue +832 -0
  280. package/views/eam/tallyModule/spotCheckUnusual/AbnormalInfoDialog.vue +165 -0
  281. package/views/eam/tallyModule/spotCheckUnusual/index.vue +971 -0
  282. package/views/eam/tallyModule/statusSummary/index.vue +1189 -0
  283. package/views/eam/tallyModule/taskProcessed/index.vue +1891 -0
  284. package/views/eam/tallyModule/waitHandle/index.vue +1984 -0
  285. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchApplyPartsDialog.vue +523 -0
  286. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchBottomEdit.vue +501 -0
  287. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchCancelDialog.vue +138 -0
  288. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchSelectPartsDialog.vue +389 -0
  289. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchSubmitDialog.vue +146 -0
  290. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchTableCalendar.vue +205 -0
  291. package/views/eam/techInnovation/techInnovationDispatch/components/DispatchTableList.vue +174 -0
  292. package/views/eam/techInnovation/techInnovationDispatch/index.vue +296 -0
  293. package/views/eam/techInnovation/techInnovationPlan/components/PlanBottomEdit.vue +469 -0
  294. package/views/eam/techInnovation/techInnovationPlan/components/PlanDetailDialog.vue +77 -0
  295. package/views/eam/techInnovation/techInnovationPlan/components/PlanSelectPartsDialog.vue +336 -0
  296. package/views/eam/techInnovation/techInnovationPlan/components/PlanSubmitDialog.vue +149 -0
  297. package/views/eam/techInnovation/techInnovationPlan/components/PlanTableCalendar.vue +171 -0
  298. package/views/eam/techInnovation/techInnovationPlan/components/PlanTableList.vue +144 -0
  299. package/views/eam/techInnovation/techInnovationPlan/index.vue +271 -0
  300. package/views/eam/techInnovation/techInnovationReport/components/ReportApplyPartsDialog.vue +523 -0
  301. package/views/eam/techInnovation/techInnovationReport/components/ReportBottomEdit.vue +615 -0
  302. package/views/eam/techInnovation/techInnovationReport/components/ReportDetailDialog.vue +76 -0
  303. package/views/eam/techInnovation/techInnovationReport/components/ReportSelectPartsDialog.vue +389 -0
  304. package/views/eam/techInnovation/techInnovationReport/components/ReportSubmitDialog.vue +146 -0
  305. package/views/eam/techInnovation/techInnovationReport/components/ReportTableCalendar.vue +145 -0
  306. package/views/eam/techInnovation/techInnovationReport/components/ReportTableList.vue +143 -0
  307. package/views/eam/techInnovation/techInnovationReport/index.vue +256 -0
  308. package/views/eam/technicalRenovation/TRPlan/index.vue +941 -0
  309. package/views/eam/technicalRenovation/TRTaskReport/index.vue +1056 -0
  310. package/views/eam/technicalRenovation/TRTaskWaitDispatch/index.vue +945 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kz-ui-base",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,559 @@
1
+ <template>
2
+ <div class="app-container">
3
+ <div class="wrapper-container" v-show="showSearch">
4
+ <el-form :model="queryParams" ref="queryForm" :inline="true">
5
+ <el-row>
6
+ <el-col :span="6">
7
+ <el-form-item label="属性编号" prop="attributeNo">
8
+ <el-input
9
+ v-model="queryParams.attributeNo"
10
+ placeholder="请输入属性编号"
11
+ clearable
12
+ size="small"
13
+ @keyup.enter.native="handleQuery"
14
+ />
15
+ </el-form-item>
16
+ </el-col>
17
+ <el-col :span="6">
18
+ <el-form-item label="属性名称" prop="attributeName">
19
+ <el-input
20
+ v-model="queryParams.attributeName"
21
+ placeholder="请输入属性名称"
22
+ clearable
23
+ size="small"
24
+ @keyup.enter.native="handleQuery"
25
+ />
26
+ </el-form-item>
27
+ </el-col>
28
+
29
+ <el-col :span="6">
30
+ <el-form-item label="属性类别" prop="attributeTypeCode">
31
+ <dict-select clearable type="attribute_type_code" v-model="queryParams.attributeTypeCode" placeholder="请选择属性类别"></dict-select>
32
+ </el-form-item>
33
+ </el-col>
34
+
35
+ <div style="float: right">
36
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
37
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
38
+ </div>
39
+ </el-row>
40
+ </el-form>
41
+ </div>
42
+
43
+ <div class="wrapper-container">
44
+ <el-row :gutter="10" class="mb8">
45
+ <el-col :span="1.5">
46
+ <el-button
47
+ type="primary"
48
+ icon="el-icon-plus"
49
+ size="mini"
50
+ @click="handleAdd"
51
+ >新增
52
+ </el-button>
53
+ </el-col>
54
+ <el-col :span="1.5">
55
+ <el-button
56
+ type="success"
57
+ icon="el-icon-edit"
58
+ size="mini"
59
+ :disabled="editButtonDisabled"
60
+ @click="handleUpdate"
61
+ >修改
62
+ </el-button>
63
+ </el-col>
64
+ <el-col :span="1.5">
65
+ <el-button
66
+ type="danger"
67
+ icon="el-icon-delete"
68
+ size="mini"
69
+ @click="handleDelete"
70
+ >删除
71
+ </el-button>
72
+ </el-col>
73
+ <right-toolbar :showSearch.sync="showSearch" :sortVisible="false" @queryTable="getList"/>
74
+ </el-row>
75
+
76
+ <el-table
77
+ ref="table"
78
+ v-loading="loading"
79
+ :height="tableHeight"
80
+ :data="attributeList"
81
+ :border="true"
82
+ default-expand-all
83
+ @selection-change="onSelectionChange"
84
+ :header-cell-style= "{'text-align':'center'}"
85
+ >
86
+ <el-table-column type="selection" width="50" align="center" />
87
+ <el-table-column type="index" label="序号" width="50px" align="center">
88
+ <template scope="scope">
89
+ <span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
90
+ </template>
91
+ </el-table-column>
92
+ <el-table-column prop="attributeNo" label="属性编号" min-width="120" align="left"/>
93
+ <el-table-column prop="attributeName" label="属性名称" min-width="120" align="left"/>
94
+ <el-table-column label="录入类型" min-width="120" align="left">
95
+ <template scope="scope">
96
+ {{ getDictLabelByValue('keyin_type_code', scope.row.keyInTypeCode) }}
97
+ </template>
98
+ </el-table-column>
99
+ <el-table-column prop="dictType" label="选项值字典类型" min-width="120" align="left"/>
100
+ <el-table-column prop="attributeTypeCode" label="属性类型" min-width="120" align="left">
101
+ <template scope="scope">
102
+ {{ scope.row.attributeTypeCode!= null && scope.row.attributeTypeCode.length > 0 ? scope.row.attributeTypeCode.split(",").map(x=>getDictLabelByValue('attribute_type_code', x)).join(", "): '' }}
103
+ </template>
104
+ </el-table-column>
105
+ <el-table-column prop="tablefieldName1" label="对照字段名1" min-width="120" align="left"/>
106
+ <el-table-column prop="useSystem1" label="使用系统1" min-width="120" align="left"/>
107
+ <el-table-column prop="tablefieldName2" label="对照字段名2" min-width="120" align="left"/>
108
+ <el-table-column prop="useSystem2" label="使用系统2" min-width="120" align="left"/>
109
+ <el-table-column prop="tablefieldName3" label="对照字段名3" min-width="120" align="left"/>
110
+ <el-table-column prop="useSystem3" label="使用系统3" min-width="120" align="left"/>
111
+ </el-table>
112
+ <pagination
113
+ :total="queryParams.total"
114
+ :page.sync="queryParams.pageNum"
115
+ :limit.sync="queryParams.pageSize"
116
+ @pagination="getList"
117
+ />
118
+ <div class="table-container-supplement" style="height: 10px;"/>
119
+ </div>
120
+
121
+ <!-- 添加或修改属性对话框 -->
122
+ <el-dialog :title="title" :visible.sync="open" width="450px" append-to-body v-dialogDrag v-dialogDragHeight>
123
+ <el-form
124
+ ref="form"
125
+ :model="attribute"
126
+ label-width="120px"
127
+ style="margin-right: 20px"
128
+ :rules="rules">
129
+ <el-row>
130
+ <el-row>
131
+ <el-col :span="24">
132
+ <el-form-item label="属性编号" prop="attributeNo">
133
+ <el-input v-model="attribute.attributeNo" :disabled="attributeNoDisabled"/>
134
+ </el-form-item>
135
+ </el-col>
136
+ <el-col :span="24">
137
+ <el-form-item label="属性名称" prop="attributeName">
138
+ <el-input v-model="attribute.attributeName"/>
139
+ </el-form-item>
140
+ </el-col>
141
+ <el-col :span="24">
142
+ <el-form-item label="录入类型" prop="keyInTypeCode">
143
+ <dict-select v-model="attribute.keyInTypeCode" type="keyin_type_code" false-label="false"
144
+ @change="keyInTypeCodeChange"/>
145
+ </el-form-item>
146
+ </el-col>
147
+ <el-col :span="24">
148
+ <el-form-item label="选项值字典类型" prop="dictType">
149
+ <el-select v-model="attribute.dictType" filterable placeholder="请选择" :disabled="dictTypeDisabled">
150
+ <el-option
151
+ v-for="item in dictOption"
152
+ :key="item.dictType"
153
+ :label="item.label"
154
+ :value="item.dictType">
155
+ </el-option>
156
+ </el-select>
157
+ </el-form-item>
158
+ </el-col>
159
+ <!--小数位数-->
160
+ <el-col :span="24">
161
+ <el-form-item label="小数位数" prop="decimalPlace" v-if="attribute.keyInTypeCode == KEY_IN_TYPE_CODE.INPUT_NUMBER">
162
+ <el-input @input="handleDecimalInput" v-model="attribute.decimalPlace"></el-input>
163
+ </el-form-item>
164
+ </el-col>
165
+ <el-col :span="24">
166
+ <el-form-item label="属性类型" prop="attributeTypeCode">
167
+ <el-select ref="typeSelection" multiple v-model="selectedAttributeTypeCodes" placeholder="请选择">
168
+ <el-option
169
+ v-for="item in attributeTypeOption"
170
+ :key="item.dictValue"
171
+ :label="item.dictLabel"
172
+ :value="item.dictValue">
173
+ </el-option>
174
+ </el-select>
175
+ </el-form-item>
176
+ </el-col>
177
+ <el-col :span="24">
178
+ <el-form-item label="对照字段名1" prop="tablefieldName1">
179
+ <el-input v-model="attribute.tablefieldName1"/>
180
+ </el-form-item>
181
+ </el-col>
182
+ <el-col :span="24">
183
+ <el-form-item label="使用系统1" prop="useSystem1">
184
+ <el-input v-model="attribute.useSystem1"/>
185
+ </el-form-item>
186
+ </el-col>
187
+ <el-col :span="24">
188
+ <el-form-item label="对照字段名2" prop="tablefieldName2">
189
+ <el-input v-model="attribute.tablefieldName2"/>
190
+ </el-form-item>
191
+ </el-col>
192
+ <el-col :span="24">
193
+ <el-form-item label="使用系统2" prop="useSystem2">
194
+ <el-input v-model="attribute.useSystem2"/>
195
+ </el-form-item>
196
+ </el-col>
197
+ <el-col :span="24">
198
+ <el-form-item label="对照字段名3" prop="tablefieldName3">
199
+ <el-input v-model="attribute.tablefieldName3"/>
200
+ </el-form-item>
201
+ </el-col>
202
+ <el-col :span="24">
203
+ <el-form-item label="使用系统3" prop="useSystem3">
204
+ <el-input v-model="attribute.useSystem3"/>
205
+ </el-form-item>
206
+ </el-col>
207
+ </el-row>
208
+ </el-row>
209
+ </el-form>
210
+ <div slot="footer" class="dialog-footer">
211
+ <el-button type="primary" :loading="submitLoading" @click="submitForm">确 定</el-button>
212
+ <el-button @click="cancel">取 消</el-button>
213
+ </div>
214
+ </el-dialog>
215
+ </div>
216
+ </template>
217
+
218
+ <script>
219
+ import { listAttribute, addAttribute, updateAttribute, delAttribute} from "@srcApi/bd/attribute"
220
+ import { optionselect} from "@srcApi/system/dict/type"
221
+ import {KEY_IN_TYPE_CODE} from "@/constant/bd";
222
+ export default {
223
+ name: "AttributeIndex",
224
+ data() {
225
+ return {
226
+ //屏幕高度
227
+ tableHeight : "700",
228
+ // 遮罩层
229
+ loading: true,
230
+ // 提交状态
231
+ submitLoading: false,
232
+ // 显示搜索条件
233
+ showSearch: true,
234
+ // 弹出层标题
235
+ title: "",
236
+ // 是否显示弹出层
237
+ open: false,
238
+ // 查询参数
239
+ queryParams: {
240
+ total: 0,
241
+ pageNum: 1,
242
+ pageSize: 10,
243
+ attributeNo: '',
244
+ attributeName: '',
245
+ attributeTypeCode: ''
246
+ },
247
+ selectedAttributeTypeCodes: [],
248
+ attributeList: [],
249
+ // 表单参数
250
+ attribute: {
251
+ attributeNo: '',
252
+ attributeName: '',
253
+ keyInTypeCode: '',
254
+ dictType: '',
255
+ decimalPlace: '',
256
+ attributeTypeCode: '',
257
+ tablefieldName1: '',
258
+ tablefieldName2: '',
259
+ tablefieldName3: '',
260
+ useSystem1: '',
261
+ useSystem2: '',
262
+ useSystem3: '',
263
+ },
264
+ rules: {},
265
+ multipleSelection: [],
266
+
267
+ // 字典表数据
268
+ dictOption: [],
269
+ attributeTypeOption: [],
270
+ }
271
+ },
272
+
273
+ mounted() {
274
+ this.$nextTick(function () {
275
+ this.tableHeight = window.innerHeight - this.$refs.table.$el.getBoundingClientRect().top - 80;
276
+ // 监听窗口大小变化
277
+ const that = this;
278
+ window.onresize = function () {
279
+ that.tableHeight = window.innerHeight -that.$refs.table.$el.getBoundingClientRect().top - 80;
280
+ };
281
+ });
282
+ },
283
+ computed: {
284
+ KEY_IN_TYPE_CODE() {
285
+ return KEY_IN_TYPE_CODE
286
+ },
287
+ editButtonDisabled() {
288
+ return this.multipleSelection.length !== 1
289
+ },
290
+ dictTypeDisabled() {
291
+ return this.attribute.keyInTypeCode !== KEY_IN_TYPE_CODE.SELECT_ENUM
292
+ },
293
+ attributeNoDisabled() {
294
+ return !!this.attribute.id
295
+ },
296
+
297
+ },
298
+ created() {
299
+ this.loadDictCache()
300
+ this.getList()
301
+ },
302
+ watch:{
303
+ showSearch(){
304
+ let that = this;
305
+ setTimeout(() => {
306
+ that.tableHeight = window.innerHeight - that.$refs.table.$el.getBoundingClientRect().top - 80;
307
+ }, 0);
308
+ },
309
+ },
310
+ methods: {
311
+ /** 查询部门列表 */
312
+ getList() {
313
+ this.loading = true
314
+ const pageNum = this.queryParams.pageNum ? this.queryParams.pageNum : 1;
315
+ const pageSize = this.queryParams.pageSize ? this.queryParams.pageSize : 10;
316
+ const orderByColumn = 'attribute_no'
317
+ listAttribute({ op: 'AND', ...this.getSearchParams(), pageNum, pageSize, orderByColumn }).then(response => {
318
+ this.attributeList = response.data
319
+ this.queryParams.total = Number(response.total);
320
+ this.loading = false
321
+ })
322
+ },
323
+ getSearchParams() {
324
+ const searchParams = { rules: [] }
325
+ searchParams.rules = [
326
+ {
327
+ op: 'LI',
328
+ property: 'attributeNo',
329
+ value: this.queryParams.attributeNo
330
+ },
331
+ {
332
+ op: 'LI',
333
+ property: 'attributeName',
334
+ value: this.queryParams.attributeName
335
+ },
336
+ {
337
+ op: 'EQ',
338
+ property: 'attributeTypeCode',
339
+ value: this.queryParams.attributeTypeCode
340
+ },
341
+ ]
342
+ return searchParams
343
+ },
344
+ // 取消按钮
345
+ cancel() {
346
+ this.open = false
347
+ this.reset()
348
+ },
349
+
350
+ // 表单重置
351
+ reset() {
352
+ this.attribute = {
353
+ attributeNo: '',
354
+ attributeName: '',
355
+ keyInTypeCode: '',
356
+ dictType: '',
357
+ attributeTypeCode: '',
358
+ tablefieldName1: '',
359
+ tablefieldName2: '',
360
+ tablefieldName3: '',
361
+ useSystem1: '',
362
+ useSystem2: '',
363
+ useSystem3: ''
364
+ }
365
+ },
366
+ /** 搜索按钮操作 */
367
+ handleQuery() {
368
+ this.queryParams.pageNum = 1
369
+ this.getList()
370
+ },
371
+ /** 重置按钮操作 */
372
+ resetQuery() {
373
+ this.resetForm("queryForm")
374
+ this.handleQuery()
375
+ },
376
+ /** 新增按钮操作 */
377
+ handleAdd() {
378
+ this.reset()
379
+ this.$nextTick(() => {
380
+ this.$refs["form"].clearValidate()
381
+ });
382
+ this.$set(this,'selectedAttributeTypeCodes', []);
383
+ this.rules = {
384
+ attributeNo: [{ required: true, message: "属性编号不能为空", trigger: "blur" }],
385
+ attributeName: [{ required: true, message: "属性名称不能为空", trigger: "blur" }],
386
+ decimalPlace: [{ required: true, message: "小数位数不能为空", trigger: "blur" }]
387
+ }
388
+ this.open = true
389
+ this.title = "新增属性"
390
+ },
391
+ /** 修改按钮操作 */
392
+ handleUpdate() {
393
+ if(this.multipleSelection && this.multipleSelection.length === 1) {
394
+ this.reset()
395
+ this.open = true
396
+ this.title = "修改属性"
397
+ const obj = {...this.multipleSelection[0]}
398
+ this.attribute = obj;
399
+ this.$set(this,'selectedAttributeTypeCodes', (obj.attributeTypeCode == null || obj.attributeTypeCode === '') ? [] : obj.attributeTypeCode.split(","));
400
+ this.rules = {
401
+ attributeName: [{ required: true, message: "属性名称不能为空", trigger: "blur" }],
402
+ decimalPlace: [{ required: true, message: "小数位数不能为空", trigger: "blur" }]
403
+ }
404
+ }
405
+ },
406
+
407
+ /** 删除按钮操作 */
408
+ handleDelete() {
409
+ this.$confirm('是否确认删除选中的属性?', "警告", {
410
+ confirmButtonText: "确定",
411
+ cancelButtonText: "取消",
412
+ type: "warning"
413
+ }).then(() => {
414
+ return delAttribute({attributes: this.multipleSelection})
415
+ }).then(() => {
416
+ this.getList()
417
+ this.msgSuccess("删除成功")
418
+ }).catch(() => {
419
+ })
420
+ },
421
+
422
+ /** 提交按钮 */
423
+ submitForm: function () {
424
+ this.submitLoading = true
425
+ this.$refs["form"].validate(valid => {
426
+ if (valid) {
427
+ if (this.attribute.id) {
428
+ let payload = Object.assign({}, this.attribute);
429
+
430
+ if (this.selectedAttributeTypeCodes != null && this.selectedAttributeTypeCodes.length > 0) {
431
+ payload.attributeTypeCode = this.selectedAttributeTypeCodes.sort().join(",");
432
+ } else {
433
+ payload.attributeTypeCode = "";
434
+ }
435
+
436
+ updateAttribute(payload).then(response => {
437
+ this.msgSuccess("修改成功")
438
+ this.open = false
439
+ this.getList()
440
+ })
441
+ } else {
442
+ let payload = Object.assign({}, this.attribute);
443
+ if (this.selectedAttributeTypeCodes != null && this.selectedAttributeTypeCodes.length > 0) {
444
+ payload.attributeTypeCode = this.selectedAttributeTypeCodes.sort().join(",");
445
+ } else {
446
+ payload.attributeTypeCode = "";
447
+ }
448
+ addAttribute(payload).then(response => {
449
+ this.msgSuccess("新增成功")
450
+ this.open = false
451
+ this.getList()
452
+ })
453
+ }
454
+ }
455
+ })
456
+ this.submitLoading = false
457
+ },
458
+
459
+ keyInTypeCodeChange(value){
460
+ if(value !== KEY_IN_TYPE_CODE.SELECT_ENUM){
461
+ this.$set(this.attribute,'dictType','');
462
+ }
463
+ },
464
+
465
+ loadDictCache() {
466
+ optionselect().then(response => {
467
+ for(let i=0;i<response.data.length;i++){
468
+ const sysDictType = response.data[i];
469
+ const dict = {
470
+ label: sysDictType.dictName +" "+ sysDictType.dictType,
471
+ dictType: sysDictType.dictType
472
+ }
473
+ this.dictOption.push(dict)
474
+ }
475
+ })
476
+
477
+ this.getDicts('attribute_type_code').then((response) => {
478
+ this.attributeTypeOption = response.data
479
+ })
480
+ },
481
+
482
+ onSelectionChange(val) {
483
+ this.multipleSelection = val
484
+ },
485
+
486
+ handleDecimalInput(value) {
487
+ const newValue = value.replace(/\D/g, '').replace(/^0+(?=\d)/, '');
488
+ this.attribute.decimalPlace = newValue.slice(0, 2);
489
+ }
490
+ }
491
+ }
492
+ </script>
493
+ <style lang="scss" scoped >
494
+ .span_class {
495
+ display: block;
496
+ width: 5px;
497
+ height: 21px;
498
+ background-color: #409eff;
499
+ position: absolute;
500
+ }
501
+
502
+ .add-btn {
503
+ display: flex;
504
+ justify-content: center;
505
+ align-items: center;
506
+ width: 100%;
507
+ height: 32px;
508
+ background: #FFFFFF;
509
+ border-radius: 4px;
510
+ border: 1px dashed #D9D9D9;
511
+ cursor: pointer;
512
+ }
513
+
514
+ .add-btn i {
515
+ font-size: 14px;
516
+ color: rgba(0, 0, 0, 0.65);
517
+ }
518
+
519
+ .add-btn span {
520
+ height: 22px;
521
+ font-size: 14px;
522
+ font-weight: 400;
523
+ color: rgba(0,0,0,0.65);
524
+ line-height: 22px;
525
+ margin-left: 8px;
526
+ }
527
+
528
+ ::v-deep label {
529
+ font-weight: 500;
530
+ }
531
+
532
+ ::v-deep .el-input.is-disabled .el-input__inner {
533
+ color: #606266;
534
+ }
535
+
536
+ ::v-deep .el-form-item {
537
+ margin-bottom: 16px;
538
+ }
539
+
540
+ ::v-deep .el-form-item--small.el-form-item {
541
+ margin-bottom: 8px;
542
+ }
543
+
544
+ ::v-deep .el-dialog__body {
545
+ padding: 24px 24px 0 24px;
546
+ }
547
+
548
+ ::v-deep .el-dialog__footer {
549
+ text-align: center;
550
+ border-top: 1px solid #ededed;
551
+ padding: 12px 0 12px 0;
552
+ }
553
+
554
+ ::v-deep .el-dialog__header {
555
+ padding: 16px;
556
+ padding-bottom: 10px;
557
+ border-bottom: 1px solid #ededed;
558
+ }
559
+ </style>