kz-ui-base 1.0.161 → 2.0.148

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 (70) hide show
  1. package/api/system/config.js +0 -17
  2. package/common/src/components/base/dialog/BaseDialog.vue +4 -15
  3. package/common/src/components/base/dialog/editDialog.vue +2 -2
  4. package/common/src/components/basics/RightToolbar/advancedQuery.vue +26 -5
  5. package/common/src/components/basics/RightToolbar/advancedQueryClose.vue +26 -5
  6. package/common/src/components/basics/RightToolbar/index.vue +5 -6
  7. package/common/src/components/custom/Material/index.vue +27 -25
  8. package/common/src/components/custom/Material/indexTs.vue +27 -25
  9. package/common/src/utils/request.js +0 -5
  10. package/common/src/views/login.vue +0 -5
  11. package/common/src/views/tenantLogin.vue +0 -5
  12. package/components/base/dialog/elTable.vue +2 -2
  13. package/components/base/dialog/sampleEditDialog.vue +38 -61
  14. package/components/base/dialog/smapleDialog.vue +12 -12
  15. package/components/base/dialog/tableForm.vue +6 -6
  16. package/components/customForm/OpMenus.vue +5 -5
  17. package/components/customForm/datePicker.vue +5 -4
  18. package/components/customForm/dropDownList.vue +8 -8
  19. package/components/customForm/lookupDialog.vue +3 -3
  20. package/components/customForm/printDialog.vue +17 -17
  21. package/components/customForm/sampleEditDialog.vue +3 -3
  22. package/components/customForm/searchTable.vue +4 -4
  23. package/components/customForm/table.vue +5 -5
  24. package/components/customForm/textarea.vue +1 -1
  25. package/components/customForm/treeDownList.vue +1 -1
  26. package/components/customForm/upload.vue +1 -1
  27. package/components/customForm/uploadButton.vue +7 -7
  28. package/components/customForm/uploadDialog.vue +1 -1
  29. package/list-base-page/doublelistBasePageTs.vue +16 -16
  30. package/list-base-page/listBasePageTs.vue +64 -228
  31. package/package.json +1 -1
  32. package/views/bd/common/modal/AddressInfoModal.vue +8 -8
  33. package/views/bd/common/modal/BankInfoModal.vue +10 -10
  34. package/views/bd/common/modal/CustomerContactsModal.vue +13 -13
  35. package/views/bd/common/modal/CustomerModal.vue +49 -51
  36. package/views/bd/common/modal/DeptModal.vue +10 -10
  37. package/views/bd/common/modal/EmployeeModal.vue +22 -26
  38. package/views/bd/common/modal/ItemModal.vue +20 -23
  39. package/views/bd/common/modal/ItemModalBk.vue +8 -8
  40. package/views/bd/common/modal/NumberingRuleModal.vue +8 -8
  41. package/views/bd/common/modal/PostModal.vue +22 -22
  42. package/views/bd/common/modal/ProjectModal.vue +8 -8
  43. package/views/bd/common/modal/SalesmanInfoModel.vue +7 -7
  44. package/views/bd/common/modal/VendorModal.vue +24 -28
  45. package/views/bd/common/modal/WorkGroupModal.vue +40 -44
  46. package/views/bd/common/modal/materialCodeModal.vue +30 -23
  47. package/views/fd/common/modal/AddResourceModal.vue +6 -8
  48. package/views/fd/common/modal/AssetModal.vue +17 -17
  49. package/views/fd/common/modal/EquipmentModal.vue +10 -10
  50. package/views/fd/common/modal/FactoryTreeModal.vue +1 -3
  51. package/views/fd/common/modal/ResourceModal.vue +6 -6
  52. package/views/fd/common/modal/SiteModal.vue +11 -9
  53. package/views/fd/common/modal/StorageUnitModal.vue +9 -9
  54. package/views/fd/common/modal/StorageZoneModal.vue +11 -11
  55. package/views/fd/common/modal/WorkAreaModal.vue +9 -9
  56. package/views/fd/common/modal/WorkCenterModal.vue +9 -9
  57. package/views/fd/common/modal/WorkUnitModal.vue +9 -9
  58. package/views/pd/common/modal/BopModal.vue +10 -10
  59. package/views/pd/common/modal/DrawingPathModal.vue +52 -52
  60. package/views/pd/common/modal/ParameterModal.vue +18 -18
  61. package/views/pd/common/modal/ProcessModal.vue +15 -15
  62. package/views/pd/common/modal/ProdRoutingDtlModal.vue +19 -19
  63. package/views/pd/common/modal/ProdRoutingModal.vue +14 -14
  64. package/views/pd/common/modal/ProdStructureModal.vue +14 -14
  65. package/views/pd/common/modal/ProdstructTemplateHdrModal.vue +25 -27
  66. package/views/pd/common/modal/ProductionVersionModal.vue +35 -35
  67. package/views/pd/common/modal/technicalStandardModal.vue +20 -20
  68. package/views/system/common/modal/UserModal.vue +70 -72
  69. package/components/base/dialog/MultiLanguageDialog.vue +0 -308
  70. package/components/base/dialog/config.js +0 -85
@@ -13,23 +13,23 @@ export default class ProcessList extends ListBasePage {
13
13
  // 列表列信息
14
14
  listColumns = [
15
15
  //{key: 0, label: "序号", visible: true},
16
- {text: this.t('pd.process.siteId'), property: "siteId", setting: { type: "Site" } },
17
- {text: this.t('pd.process.processNo'), property: "processNo" },
18
- {text: this.t('pd.process.processName'), property: "processName" },
16
+ {text: "组织", property: "siteId", setting: { type: "Site" } },
17
+ {text: "工序编号", property: "processNo" },
18
+ {text: "工序名称", property: "processName" },
19
19
  {
20
- text: this.t('pd.process.schedulingTypeCode'),
20
+ text: `排程方式`,
21
21
  property: "schedulingTypeCode",
22
22
  setting: {
23
23
  dictType: "scheduling_type_code",
24
24
  }
25
25
  },
26
- {text: this.t('pd.process.erpProcess'), property: "erpProcess" },
27
- {text: this.t('pd.process.remark'), property: "remark" }
26
+ {text: "ERP工序", property: "erpProcess" },
27
+ {text: "备注", property: "remark" }
28
28
  ];
29
29
  // 查询条件
30
30
  searchRules= [
31
31
  {
32
- text: this.t('pd.process.siteId'),
32
+ text: `组织`,
33
33
  property: "siteId",
34
34
  displayType: "DropDownList",
35
35
  op:"EQ",
@@ -43,19 +43,19 @@ export default class ProcessList extends ListBasePage {
43
43
  siteId: this.value?.siteId,
44
44
  disabled: !!this.value?.siteId
45
45
  },
46
- {text: this.t('pd.process.processNo'), property: "processNo", displayType: "TextBox",op:"LI"},
47
- {text: this.t('pd.process.processName'), property: "processName", displayType: "TextBox",op:"LI"}
46
+ {text: "工序编号", property: "processNo", displayType: "TextBox",op:"LI"},
47
+ {text: "工序名称", property: "processName", displayType: "TextBox",op:"LI"}
48
48
  ];
49
49
  // 列信息
50
50
  editColumns= [
51
- { text: this.t('pd.process.processNo'), property: "processNo", displayType: "TextBox" },
52
- { text: this.t('pd.process.processName'), property: "processName", displayType: "TextBox" },
53
- { text: this.t('pd.process.schedulingTypeCode'), property: "schedulingTypeCode", displayType: "DropDownList",
51
+ { text: "工序编号", property: "processNo", displayType: "TextBox" },
52
+ { text: "工序名称", property: "processName", displayType: "TextBox" },
53
+ { text: "排程方式", property: "schedulingTypeCode", displayType: "DropDownList",
54
54
  setting: {
55
55
  dictType: "scheduling_type_code",
56
56
  }
57
57
  },
58
- { text: this.t('pd.process.remark'), property: "remark", displayType: "TextArea",
58
+ { text: "备注", property: "remark", displayType: "TextArea",
59
59
  setting: {
60
60
  height: 5,
61
61
  }
@@ -73,9 +73,9 @@ export default class ProcessList extends ListBasePage {
73
73
 
74
74
  // 表单校验
75
75
  editRules= {
76
- processNo: [{ required: true, message: this.t('pd.process.required.processNo'), trigger: "blur" }],
76
+ processNo: [{ required: true, message: "工序编号不能为空", trigger: "blur" }],
77
77
  processName: [
78
- { required: true, message: this.t('pd.process.required.processName'), trigger: "blur" }],
78
+ { required: true, message: "工序名称不能为空", trigger: "blur" }],
79
79
  };
80
80
  isMultiple = true;
81
81
  opMenus = [];
@@ -13,32 +13,32 @@ export default class ProdRoutingDtlList extends ListBasePage {
13
13
  pkField= "id";
14
14
  // 列表列信息
15
15
  listColumns = [
16
- {text: this.t('pd.prodRoutingDtl.processSeq'), property: "processSeq" },
17
- {text: this.t('pd.prodRoutingDtl.processDesc'), property: "processDesc" },
18
- {text: this.t('pd.prodRoutingDtl.processNo'), property: "processNo" },
19
- {text: this.t('pd.prodRoutingDtl.processName'), property: "processName" },
20
- {text: this.t('pd.prodRoutingDtl.workCenterNo'), property: "workCenterNo" },
21
- {text: this.t('pd.prodRoutingDtl.workCenterName'), property: "workCenterName" },
22
- {text: this.t('pd.prodRoutingDtl.siteName'), property: "siteName" },
23
- {text: this.t('pd.prodRoutingDtl.vendorName'), property: "vendorName" },
24
- {text: this.t('pd.prodRoutingDtl.isFirstProcess'), property: "isFirstProcess"},
25
- {text: this.t('pd.prodRoutingDtl.isLastProcess'), property: "isLastProcess"},
26
- {text: this.t('pd.prodRoutingDtl.nextProcessSeq'), property: "nextProcessSeq" },
27
- {text: this.t('pd.prodRoutingDtl.preOperateMin'), property: "preOperateMin" },
28
- {text: this.t('pd.prodRoutingDtl.operateTime'), property: "preOperateMin" },
29
- {text: this.t('pd.prodRoutingDtl.timeUomCode'), property: "timeUomCode",
16
+ {text: "步骤", property: "processSeq" },
17
+ {text: "描述", property: "processDesc" },
18
+ {text: "工序编号", property: "processNo" },
19
+ {text: "工序名称", property: "processName" },
20
+ {text: "工作中心编号", property: "workCenterNo" },
21
+ {text: "工作中心名称", property: "workCenterName" },
22
+ {text: "组织", property: "siteName" },
23
+ {text: "供应商", property: "vendorName" },
24
+ {text: "是否首工序", property: "isFirstProcess"},
25
+ {text: "是否末工序", property: "isLastProcess"},
26
+ {text: "下步骤", property: "nextProcessSeq" },
27
+ {text: "前处理时间()", property: "preOperateMin" },
28
+ {text: "加工时间", property: "preOperateMin" },
29
+ {text: `加工时间单位`, property: "timeUomCode",
30
30
  setting: {dictType: "time_uom_code",}
31
31
  },
32
- {text: this.t('pd.prodRoutingDtl.postOperateMin'), property: "postOperateMin" },
33
- {text: this.t('pd.prodRoutingDtl.erpProcess'), property: "operateTime" },
32
+ {text: "后处理时间()", property: "postOperateMin" },
33
+ {text: "ERP工序", property: "operateTime" },
34
34
  ];
35
35
  // 查询条件
36
36
  searchRules= [
37
- {text: this.t('pd.prodRoutingDtl.prodRoutingId'), property: "prodRoutingId", displayType: "TextBox", op:"EQ",
37
+ {text: "工艺路线Id", property: "prodRoutingId", displayType: "TextBox", op:"EQ",
38
38
  visible: this.value?.prodRoutingId === undefined || this.value?.prodRoutingId == null,
39
39
  prodRoutingId: this.value?.prodRoutingId || ""},
40
- {text: this.t('pd.prodRoutingDtl.prodRoutingNo'), property: "prodRoutingNo", displayType: "TextBox",op:"LI"},
41
- {text: this.t('pd.prodRoutingDtl.prodRoutingName'), property: "prodRoutingName", displayType: "TextBox",op:"LI"}
40
+ {text: "工艺路线编号", property: "prodRoutingNo", displayType: "TextBox",op:"LI"},
41
+ {text: "工艺路线名称", property: "prodRoutingName", displayType: "TextBox",op:"LI"}
42
42
  ];
43
43
 
44
44
  listSetting = {
@@ -12,40 +12,40 @@ export default class ProdRoutingList extends ListBasePage {
12
12
  pkField= "id";
13
13
  // 列表列信息
14
14
  listColumns = [
15
- {text: this.t('pd.prodRouting.siteId'), property: "siteId", setting: { type: "Site" } },
16
- {text: this.t('pd.prodRouting.prodRoutingNo'), property: "prodRoutingNo" },
17
- {text: this.t('pd.prodRouting.prodRoutingName'), property: "prodRoutingName" },
15
+ {text: "组织", property: "siteId", setting: { type: "Site" } },
16
+ {text: "工艺路线编号", property: "prodRoutingNo" },
17
+ {text: "工艺路线名称", property: "prodRoutingName" },
18
18
  {
19
- text: this.t('pd.prodRouting.prTypeCode'),
19
+ text: `工艺路线类型`,
20
20
  property: "prTypeCode",
21
21
  setting: {
22
22
  dictType: "pr_type_code",
23
23
  }
24
24
  },
25
- {text: this.t('pd.prodRouting.versionNo'), property: "versionNo" },
25
+ {text: "版本号", property: "versionNo" },
26
26
  {
27
- text: this.t('pd.prodRouting.isCurrentVersion'), property: "isCurrentVersion", displayType: "DropDownList",
27
+ text: "当前版本", property: "isCurrentVersion", displayType: "DropDownList",
28
28
  setting: {
29
29
  multiple: false, //多选
30
30
  items: [
31
- { text: this.t('pd.common.yes'), value: 'true' },
32
- { text: this.t('pd.common.no'), value: 'false' },
33
- ],
31
+ { text: "是", value: 'true' },
32
+ { text: "否", value: 'false' },
33
+ ],
34
34
  },
35
35
  },
36
36
  {
37
- text: this.t('pd.prodRouting.prStatusCode'),
37
+ text: `产品构成状态`,
38
38
  property: "prStatusCode",
39
39
  setting: {
40
40
  dictType: "pr_status_code",
41
41
  }
42
42
  },
43
- {text: this.t('pd.prodRouting.remark'), property: "remark" },
43
+ {text: "备注", property: "remark" },
44
44
  ];
45
45
  // 查询条件
46
46
  searchRules= [
47
47
  {
48
- text: this.t('pd.prodRouting.siteId'),
48
+ text: `组织`,
49
49
  property: "siteId",
50
50
  displayType: "DropDownList",
51
51
  op:"EQ",
@@ -59,8 +59,8 @@ export default class ProdRoutingList extends ListBasePage {
59
59
  siteId: this.value?.siteId,
60
60
  disabled: !!this.value?.siteId
61
61
  },
62
- {text: this.t('pd.prodRouting.prodRoutingNo'), property: "prodRoutingNo", displayType: "TextBox",op:"LI"},
63
- {text: this.t('pd.prodRouting.prodRoutingName'), property: "prodRoutingName", displayType: "TextBox",op:"LI"}
62
+ {text: "工艺路线编号", property: "prodRoutingNo", displayType: "TextBox",op:"LI"},
63
+ {text: "工艺路线名称", property: "prodRoutingName", displayType: "TextBox",op:"LI"}
64
64
  ];
65
65
  areaSetting= [
66
66
  {
@@ -12,40 +12,40 @@ export default class ProdStructureList extends ListBasePage {
12
12
  pkField= "id";
13
13
  // 列表列信息
14
14
  listColumns = [
15
- {text: this.t('pd.prodStructure.siteId'), property: "siteId", setting: { type: "Site" } },
16
- {text: this.t('pd.prodStructure.prodStructureNo'), property: "prodStructureNo" },
17
- {text: this.t('pd.prodStructure.prodStructureName'), property: "prodStructureName" },
15
+ {text: "组织", property: "siteId", setting: { type: "Site" } },
16
+ {text: "产品构成编号", property: "prodStructureNo" },
17
+ {text: "产品构成名称", property: "prodStructureName" },
18
18
  {
19
- text: this.t('pd.prodStructure.psTypeCode'),
19
+ text: `产品构成类型`,
20
20
  property: "psTypeCode",
21
21
  setting: {
22
22
  dictType: "ps_type_code",
23
23
  }
24
24
  },
25
- {text: this.t('pd.prodStructure.versionNo'), property: "versionNo" },
25
+ {text: "版本号", property: "versionNo" },
26
26
  {
27
- text: this.t('pd.prodStructure.isCurrentVersion'), property: "isCurrentVersion", displayType: "DropDownList",
27
+ text: "当前版本", property: "isCurrentVersion", displayType: "DropDownList",
28
28
  setting: {
29
29
  multiple: false, //多选
30
30
  items: [
31
- { text: this.t('pd.common.yes'), value: true },
32
- { text: this.t('pd.common.no'), value: false },
33
- ],
31
+ { text: "是", value: true },
32
+ { text: "否", value: false },
33
+ ],
34
34
  },
35
35
  },
36
36
  {
37
- text: this.t('pd.prodStructure.psStatusCode'),
37
+ text: `产品构成状态`,
38
38
  property: "psStatusCode",
39
39
  setting: {
40
40
  dictType: "ps_status_code",
41
41
  }
42
42
  },
43
- {text: this.t('pd.prodStructure.remark'), property: "remark" },
43
+ {text: "备注", property: "remark" },
44
44
  ];
45
45
  // 查询条件
46
46
  searchRules= [
47
47
  {
48
- text: this.t('pd.prodStructure.siteId'),
48
+ text: `组织`,
49
49
  property: "siteId",
50
50
  displayType: "DropDownList",
51
51
  op:"EQ",
@@ -59,8 +59,8 @@ export default class ProdStructureList extends ListBasePage {
59
59
  siteId: this.value?.siteId,
60
60
  disabled: !!this.value?.siteId
61
61
  },
62
- {text: this.t('pd.prodStructure.prodStructureNo'), property: "prodStructureNo", displayType: "TextBox",op:"LI"},
63
- {text: this.t('pd.prodStructure.prodStructureName'), property: "prodStructureName", displayType: "TextBox",op:"LI"}
62
+ {text: "产品构成编号", property: "prodStructureNo", displayType: "TextBox",op:"LI"},
63
+ {text: "产品构成名称", property: "prodStructureName", displayType: "TextBox",op:"LI"}
64
64
  ];
65
65
  areaSetting= [
66
66
  {
@@ -11,56 +11,54 @@ export default class ProdstructtemplatehdrList extends ListBasePage {
11
11
  pkField = "id";
12
12
  // 列表列信息
13
13
  listColumns = [
14
- //{key: 0, label: this.t('common.serialNumber'), visible: true},
15
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateNo'), property: "prodstructTemplateNo"},
16
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateName'), property: "prodstructTemplateName"},
17
- {text: this.t('pd.prodstructTemplateHdr.diameterCode'), property: "diameterCode", setting: {
14
+ //{key: 0, label: "序号", visible: true},
15
+ {text: "产品结构模板编号", property: "prodstructTemplateNo"},
16
+ {text: "产品结构模板名称", property: "prodstructTemplateName"},
17
+ {text: "直径", property: "diameterCode", setting: {
18
18
  dictType: "diameter_code",
19
19
  }},
20
- {text: this.t('pd.prodstructTemplateHdr.prodCategoryCode'), property: "prodCategoryCode"},
21
- {text: this.t('pd.prodstructTemplateHdr.ropeStructureCode'), property: "ropeStructureCode"},
22
- {text: this.t('pd.prodstructTemplateHdr.strandStructureCode'), property: "strandStructureCode"},
23
- {text: this.t('pd.prodstructTemplateHdr.ropeCoreCode'), property: "ropeCoreCode"},
20
+ {text: "产品种类", property: "prodCategoryCode"},
21
+ {text: "绳结构", property: "ropeStructureCode"},
22
+ {text: "股结构", property: "strandStructureCode"},
23
+ {text: "芯结构", property: "ropeCoreCode"},
24
24
  ];
25
25
  // 查询条件
26
26
  searchRules = [
27
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateNo'), property: "prodstructTemplateNo", displayType: "TextBox"},
28
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateName'), property: "prodstructTemplateName", displayType: "TextBox"},
29
- {text: this.t('pd.prodstructTemplateHdr.prodCategoryCode'), property: "prodCategoryCode", displayType: "TextBox"},
30
- {text: this.t('pd.prodstructTemplateHdr.ropeStructureCode'), property: "ropeStructureCode", displayType: "TextBox"},
31
- {text: this.t('pd.prodstructTemplateHdr.strandStructureCode'), property: "strandStructureCode", displayType: "TextBox"},
32
- {text: this.t('pd.prodstructTemplateHdr.ropeCoreCode'), property: "ropeCoreCode", displayType: "TextBox"},
27
+ {text: "产品结构模板编号", property: "prodstructTemplateNo", displayType: "TextBox"},
28
+ {text: "产品结构模板名称", property: "prodstructTemplateName", displayType: "TextBox"},
29
+ {text: "产品种类", property: "prodCategoryCode", displayType: "TextBox"},
30
+ {text: "绳结构", property: "ropeStructureCode", displayType: "TextBox"},
31
+ {text: "股结构", property: "strandStructureCode", displayType: "TextBox"},
32
+ {text: "芯结构", property: "ropeCoreCode", displayType: "TextBox"},
33
33
  ];
34
34
  // 列信息
35
35
  editColumns = [
36
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateNo'), property: "prodstructTemplateNo", displayType: "TextBox"},
37
- {text: this.t('pd.prodstructTemplateHdr.prodstructTemplateName'), property: "prodstructTemplateName", displayType: "TextBox"},
38
- {text: this.t('pd.prodstructTemplateHdr.diameterCode'), property: "diameterCode", displayType: "DropDownList", setting: {dictType: "diameter_code",}},
39
- {text: this.t('pd.prodstructTemplateHdr.prodCategoryCode'), property: "prodCategoryCode", displayType: "DropDownList", setting: {dictType: "prod_category_code",}},
40
- {text: this.t('pd.prodstructTemplateHdr.ropeStructureCode'), property: "ropeStructureCode", displayType: "DropDownList", setting: {dictType: "rope_structure_code",}},
41
- {text: this.t('pd.prodstructTemplateHdr.strandStructureCode'), property: "strandStructureCode", displayType: "DropDownList", setting: {dictType: "strand_structure_code",}},
42
- {text: this.t('pd.prodstructTemplateHdr.ropeCoreCode'), property: "ropeCoreCode", displayType: "DropDownList", setting: {dictType: "rope_core_code",}},
36
+ {text: "产品结构模板编号", property: "prodstructTemplateNo", displayType: "TextBox"},
37
+ {text: "产品结构模板名称", property: "prodstructTemplateName", displayType: "TextBox"},
38
+ {text: "绳结构", property: "ropeStructureCode", displayType: "TextBox"},
39
+ {text: "股结构", property: "strandStructureCode", displayType: "TextBox"},
40
+ {text: "芯结构", property: "ropeCoreCode", displayType: "TextBox"},
43
41
  ];
44
42
 
45
43
  // 表单校验
46
44
  editRules = {
47
45
  prodstructTemplateNo: [
48
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.prodstructTemplateNo'), trigger: "blur"}
46
+ {required: true, message: "产品结构模板编号不能为空", trigger: "blur"}
49
47
  ],
50
48
  prodstructTemplateName: [
51
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.prodstructTemplateName'), trigger: "blur"}
49
+ {required: true, message: "产品结构模板名称不能为空", trigger: "blur"}
52
50
  ],
53
51
  prodCategoryCode: [
54
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.prodCategoryCode'), trigger: "blur"}
52
+ {required: true, message: "产品种类不能为空", trigger: "blur"}
55
53
  ],
56
54
  ropeStructureCode: [
57
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.ropeStructureCode'), trigger: "blur"}
55
+ {required: true, message: "绳结构不能为空", trigger: "blur"}
58
56
  ],
59
57
  strandStructureCode: [
60
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.strandStructureCode'), trigger: "blur"}
58
+ {required: true, message: "股结构不能为空", trigger: "blur"}
61
59
  ],
62
60
  ropeCoreCode: [
63
- {required: true, message: this.t('pd.prodstructTemplateHdr.required.ropeCoreCode'), trigger: "blur"}
61
+ {required: true, message: "芯结构不能为空", trigger: "blur"}
64
62
  ],
65
63
  };
66
64
  isMultiple = true;
@@ -20,88 +20,88 @@ export default class VersionList extends ListBasePage {
20
20
  multipleChoice: false,
21
21
  };
22
22
  productionVersionStatusDict = {
23
- "1": this.t('pd.productionVersion.status.modifying'),
24
- "2": this.t('pd.productionVersion.status.modified'),
25
- "3": this.t('pd.productionVersion.status.auditing'),
26
- "4": this.t('pd.productionVersion.status.rejected'),
27
- "5": this.t('pd.productionVersion.status.audited'),
28
- "6": this.t('pd.productionVersion.status.confirmed')
23
+ "1": "修改中",
24
+ "2": "已修改",
25
+ "3": "审核中",
26
+ "4": "已驳回",
27
+ "5": "已审核",
28
+ "6": "已确认"
29
29
  }
30
30
  // 列表列信息
31
31
  listColumns = [
32
32
  //{key: 0, label: "序号", visible: true},
33
- {text: this.t('pd.productionVersion.productionVersionNo'), property: "productionVersionNo"},
34
- {text: this.t('pd.productionVersion.productionVersionName'), property: "productionVersionName"},
35
- {text: this.t('pd.productionVersion.isStandardVersionText'), property: "isStandardVersionText"},
36
- {text: this.t('pd.productionVersion.itemId'), property: "itemId"},
37
- {text: this.t('pd.productionVersion.productionVersionStatusText'), property: "productionVersionStatusText"},
33
+ {text: "生产版本编号", property: "productionVersionNo"},
34
+ {text: "生产版本名称", property: "productionVersionName"},
35
+ {text: "标准版本标志(0非标准 1标准)", property: "isStandardVersionText"},
36
+ {text: "物料ID", property: "itemId"},
37
+ {text: "生产版本状态", property: "productionVersionStatusText"},
38
38
  ];
39
39
  // 查询条件
40
40
  searchRules = [
41
- {text: this.t('pd.productionVersion.productionVersionNo'), property: "productionVersionNo", displayType: "TextBox", op: "LI"},
42
- {text: this.t('pd.productionVersion.productionVersionName'), property: "productionVersionName", displayType: "TextBox", op: "LI"},
41
+ {text: "生产版本编号", property: "productionVersionNo", displayType: "TextBox", op: "LI"},
42
+ {text: "生产版本名称", property: "productionVersionName", displayType: "TextBox", op: "LI"},
43
43
  {
44
- text: this.t('pd.productionVersion.isStandardVersion'), property: "isStandardVersion",
44
+ text: "是否标准版本", property: "isStandardVersion",
45
45
  displayType: "DropDownList",
46
46
  setting: {
47
47
  multiple: false, //多选
48
48
  items: [
49
- {text: this.t('common.yes'), value: "1"},
50
- {text: this.t('common.no'), value: "0"},
49
+ {text: "是", value: "1"},
50
+ {text: "否", value: "0"},
51
51
  ],
52
52
  },
53
53
  },
54
54
  {
55
- text: this.t('pd.productionVersion.itemId'), property: "itemId", displayType: "TextBox",
55
+ text: "物料ID", property: "itemId", displayType: "TextBox",
56
56
  visible: this.value.itemId === undefined || this.value.itemId == null,
57
57
  itemId: this.value.itemId || ""
58
58
  },
59
59
  {
60
- text: this.t('pd.productionVersion.productionVersionStatusCode'), property: "productionVersionStatusCode",
60
+ text: "生产版本状态", property: "productionVersionStatusCode",
61
61
  displayType: "DropDownList",
62
62
  setting: {
63
63
  multiple: false, //多选
64
64
  items: [
65
- {text: PRODUCTION_VERSION_STATUS_CODE.MODIFYING, value: this.t('pd.productionVersion.status.modifying')},
66
- {text: PRODUCTION_VERSION_STATUS_CODE.MODIFIED, value: this.t('pd.productionVersion.status.modified')},
67
- {text: PRODUCTION_VERSION_STATUS_CODE.AUDITING, value: this.t('pd.productionVersion.status.auditing')},
68
- {text: PRODUCTION_VERSION_STATUS_CODE.REJECTED, value: this.t('pd.productionVersion.status.rejected')},
69
- {text: PRODUCTION_VERSION_STATUS_CODE.AUDITED, value: this.t('pd.productionVersion.status.audited')},
70
- {text: PRODUCTION_VERSION_STATUS_CODE.CONFIRMED, value: this.t('pd.productionVersion.status.confirmed')},
65
+ {text: PRODUCTION_VERSION_STATUS_CODE.MODIFYING, value: "修改中"},
66
+ {text: PRODUCTION_VERSION_STATUS_CODE.MODIFIED, value: "已修改"},
67
+ {text: PRODUCTION_VERSION_STATUS_CODE.AUDITING, value: "审核中"},
68
+ {text: PRODUCTION_VERSION_STATUS_CODE.REJECTED, value: "已驳回"},
69
+ {text: PRODUCTION_VERSION_STATUS_CODE.AUDITED, value: "已审核"},
70
+ {text: PRODUCTION_VERSION_STATUS_CODE.CONFIRMED, value: "已确认"},
71
71
  ],
72
72
  },
73
73
  },
74
74
  ];
75
75
  // 列信息
76
76
  editColumns = [
77
- {text: this.t('pd.productionVersion.productionVersionNo'), property: "productionVersionNo", displayType: "TextBox"},
78
- {text: this.t('pd.productionVersion.productionVersionName'), property: "productionVersionName", displayType: "TextBox"},
79
- {text: this.t('pd.productionVersion.isStandardVersion'), property: "isStandardVersion", displayType: "TextBox"},
80
- {text: this.t('pd.productionVersion.productionVersionStatusCode'), property: "productionVersionStatusCode", displayType: "TextBox"},
77
+ {text: "生产版本编号", property: "productionVersionNo", displayType: "TextBox"},
78
+ {text: "生产版本名称", property: "productionVersionName", displayType: "TextBox"},
79
+ {text: "是否标准版本", property: "isStandardVersion", displayType: "TextBox"},
80
+ {text: "生产版本状态", property: "productionVersionStatusCode", displayType: "TextBox"},
81
81
  ];
82
82
 
83
83
  // 表单校验
84
84
  editRules = {
85
85
  productionVersionNo: [
86
- {required: true, message: this.t('pd.productionVersion.required.productionVersionNo'), trigger: "blur"}
86
+ {required: true, message: "生产版本编号不能为空", trigger: "blur"}
87
87
  ],
88
88
  productionVersionName: [
89
- {required: true, message: this.t('pd.productionVersion.required.productionVersionName'), trigger: "blur"}
89
+ {required: true, message: "生产版本名称不能为空", trigger: "blur"}
90
90
  ],
91
91
  isStandardVersion: [
92
- {required: true, message: this.t('pd.productionVersion.required.isStandardVersion'), trigger: "blur"}
92
+ {required: true, message: "标准版本标志(0非标准 1标准)不能为空", trigger: "blur"}
93
93
  ],
94
94
  itemId: [
95
- {required: true, message: this.t('pd.productionVersion.required.itemId'), trigger: "blur"}
95
+ {required: true, message: "物料ID不能为空", trigger: "blur"}
96
96
  ],
97
97
  productionVersionStatusCode: [
98
- {required: true, message: this.t('pd.productionVersion.required.productionVersionStatusCode'), trigger: "blur"}
98
+ {required: true, message: "生产版本状态", trigger: "blur"}
99
99
  ],
100
100
  ver: [
101
- {required: true, message: this.t('pd.productionVersion.required.ver'), trigger: "blur"}
101
+ {required: true, message: "版本不能为空", trigger: "blur"}
102
102
  ],
103
103
  isDeleted: [
104
- {required: true, message: this.t('pd.productionVersion.required.isDeleted'), trigger: "blur"}
104
+ {required: true, message: "删除标志(0正常 1删除)不能为空", trigger: "blur"}
105
105
  ],
106
106
  };
107
107
 
@@ -32,25 +32,25 @@
32
32
  label-width="80px">
33
33
 
34
34
  <el-col :span="6" style="white-space:nowrap">
35
- <el-form-item :label="t('pd.technicalStandard.technicalStandardName')" class="search-panel">
35
+ <el-form-item label="标准名称" class="search-panel">
36
36
  <el-input style="width:80%;" v-model="searchParams.technicalStandardName"></el-input>
37
37
  </el-form-item>
38
38
  </el-col>
39
39
 
40
40
  <el-col :span="6" style="white-space:nowrap">
41
- <el-form-item :label="t('pd.technicalStandard.technicalStandardCode')" class="search-panel">
41
+ <el-form-item label="标准代号" class="search-panel">
42
42
  <el-input style="width:80%;" v-model="searchParams.technicalStandardCode"></el-input>
43
43
  </el-form-item>
44
44
  </el-col>
45
45
 
46
46
  <el-col :span="6" style="white-space:nowrap">
47
- <el-form-item :label="t('pd.technicalStandard.prodCategoryCode')" class="search-panel">
47
+ <el-form-item label="产品种类" class="search-panel">
48
48
  <dict-select type="prod_category_code" v-model="searchParams.prodCategoryCode" style="width:80%;" :disabled="prodCategoryCode != null" clearable></dict-select>
49
49
  </el-form-item>
50
50
  </el-col>
51
51
 
52
52
  <el-col :span="6" style="white-space:nowrap" >
53
- <el-form-item :label="t('pd.technicalStandard.technicalStandardType')" class="search-panel">
53
+ <el-form-item label="标准类型" class="search-panel">
54
54
  <dict-select type="technical_standard_type_code" v-model="searchParams.technicalStandardType" style="width:80%;" :disabled="technicalStandardType != null" clearable></dict-select>
55
55
  </el-form-item>
56
56
  </el-col>
@@ -58,8 +58,8 @@
58
58
  </el-form>
59
59
  </el-row>
60
60
  <div style="float: right">
61
- <el-button type="primary" @click="queryTableData">{{ t('pd.technicalStandard.search') }}</el-button>
62
- <el-button @click="reset">{{ t('pd.technicalStandard.reset') }}</el-button>
61
+ <el-button type="primary" @click="queryTableData">搜索</el-button>
62
+ <el-button @click="reset">重置</el-button>
63
63
  </div>
64
64
  </div>
65
65
 
@@ -277,8 +277,8 @@
277
277
  </el-col>
278
278
  </el-row>
279
279
  <div v-if="value && value.btnShow" class="dialog-footer">
280
- <el-button type="primary" @click="submitForm">{{ t('common.confirm') }}</el-button>
281
- <el-button @click="cancel">{{ t('common.cancel') }}</el-button>
280
+ <el-button type="primary" @click="submitForm">确 定</el-button>
281
+ <el-button @click="cancel">取 消</el-button>
282
282
  </div>
283
283
  </div>
284
284
  </template>
@@ -330,17 +330,17 @@ export default class StandardList extends ListBasePage {
330
330
  loading = false;
331
331
  // 列表列信息
332
332
  listColumns = [
333
- { text: this.t('pd.technicalStandard.technicalStandardNo'), property: "technicalStandardNo", width: 120 },
334
- // { text: this.t('pd.technicalStandard.standardClassName'), property: "technicalStandardClassName" },
335
- { text: this.t('pd.technicalStandard.technicalStandardName'), property: "technicalStandardName", width: 320, align: "left" },
336
- { text: this.t('pd.technicalStandard.technicalStandardCode'), property: "technicalStandardCode", width: 200, align: "left" },
337
- { text: this.t('pd.technicalStandard.technicalStandardTypeLabel'), property: "technicalStandardTypeLabel" },
338
- { text: this.t('pd.technicalStandard.standardLevelLabel'), property: "standardLevelLabel", width: 100 },
339
- { text: this.t('pd.technicalStandard.adoptionLevelLabel'), property: "adoptionLevelLabel", width: 100 },
340
- { text: this.t('pd.technicalStandard.adoptionNo'), property: "adoptionNo", width: 200 },
341
- { text: this.t('pd.technicalStandard.controlDepartmentLabel'), property: "controlDepartmentLabel", width: 160 },
342
- { text: this.t('pd.technicalStandard.fileTypeLabel'), property: "fileTypeLabel", width: 100 },
343
- { text: this.t('pd.technicalStandard.attachfileText'), property: "attachfileText", width: 100 },
333
+ { text: "编号", property: "technicalStandardNo", width: 120 },
334
+ // { text: "标准分类", property: "technicalStandardClassName" },
335
+ { text: "标准名称", property: "technicalStandardName", width: 320, align: "left" },
336
+ { text: "标准代号", property: "technicalStandardCode", width: 200, align: "left" },
337
+ { text: "标准类型", property: "technicalStandardTypeLabel" },
338
+ { text: "宜订级别", property: "standardLevelLabel", width: 100 },
339
+ { text: "采标程度", property: "adoptionLevelLabel", width: 100 },
340
+ { text: "采标号", property: "adoptionNo", width: 200 },
341
+ { text: "控制部门", property: "controlDepartmentLabel", width: 160 },
342
+ { text: "文档形式", property: "fileTypeLabel", width: 100 },
343
+ { text: "档案附件", property: "attachfileText", width: 100 },
344
344
  ];
345
345
  standardLevelCodeMap = {};
346
346
  adoptionLevelCodeMap = {};
@@ -405,7 +405,7 @@ export default class StandardList extends ListBasePage {
405
405
  //是否显示下拉滑块
406
406
  dropDownSliders: false,
407
407
  //搜索框标题
408
- title: this.t('common.pleaseEnterDeptOrPost'),
408
+ title: "请输入部门|岗位名称",
409
409
  };
410
410
  //操作菜单设定
411
411
  opMenus = [