Browse Source

【nev-pc】需求更改

ag_report_nev
安虹睿 9 months ago
parent
commit
446fa7f711
  1. 5
      fe/PC/src/components/newAndEdiDialog/index.vue
  2. 13
      fe/PC/src/views/basicData/WorkshopManage/ProdLineItem.vue

5
fe/PC/src/components/newAndEdiDialog/index.vue

@ -26,6 +26,7 @@
@submitForm="FormClick(arguments)"
@radioChange="radioChange"
@changeSelect="changeSelect"
:labelWidth="labelWidth"
>
<template>
<slot></slot>
@ -85,6 +86,10 @@
<script>
export default {
props: {
labelWidth: {
type: String,
default: "140px",
},
loading: {
type: Boolean,
default: false

13
fe/PC/src/views/basicData/WorkshopManage/ProdLineItem.vue

@ -43,6 +43,7 @@
@push="push"
@clear="clear"
@goBack="goBack"
:labelWidth="'160px'"
></newAndEdiDialog>
<!-- 搜索按钮窗体组件 -->
<searchPage
@ -174,17 +175,17 @@ export default {
{ label: _Names.itemDesc1, prop: 'itemDesc1', type:"input", disabled:true, colSpan: 12 },
{ label: _Names.itemDesc2, prop: 'itemDesc2', type:"input", disabled:true, colSpan: 12 },
// 3,4,16
{ type: "filterSelect", label: "成品/半成品库位", prop: "productLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[来源]成品/半成品库位", prop: "productLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('product'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.CreateFormData,this.locationFilter('product'))},
colSpan: 12,multiple:true
},
{ type: "filterSelect", label: "原材料库位", prop: "rawLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[来源]原材料库位", prop: "rawLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('raw'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.CreateFormData,this.locationFilter('raw'))},
colSpan: 12,multiple:true
},
{ type: "filterSelect", label: "线边库位", prop: "wipLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[完工]线边库位", prop: "wipLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('wip'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.CreateFormData,this.locationFilter('wip'))},
colSpan: 12,multiple:true
@ -201,17 +202,17 @@ export default {
{ label: _Names.itemName, prop: 'itemName', type:"input", disabled:true, colSpan: 12 },
{ label: _Names.itemDesc1, prop: 'itemDesc1', type:"input", disabled:true, colSpan: 12 },
{ label: _Names.itemDesc2, prop: 'itemDesc2', type:"input", disabled:true, colSpan: 12 },
{ type: "filterSelect", label: "成品/半成品库位", prop: "productLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[来源]成品/半成品库位", prop: "productLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('product'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.editFormData,this.locationFilter('product'))},
colSpan: 12,multiple:true
},
{ type: "filterSelect", label: "原材料来源库位", prop: "rawLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[来源]原材料库位", prop: "rawLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('raw'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.editFormData,this.locationFilter('raw'))},
colSpan: 12,multiple:true
},
{ type: "filterSelect", label: "线边库位", prop: "wipLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
{ type: "filterSelect", label: "[完工]线边库位", prop: "wipLocationCodeListJson_show", optionsLabel: "name", optionsValue: "code",
focus: (type,val) => { return this.getFilterList(type, val, "basedata/location",this.locationFilter('wip'))},
searchButton: (val) => { this.showSerarchPage(val, 'basedata/location', 'Location', '库位选择', this.editFormData,this.locationFilter('wip'))},
colSpan: 12,multiple:true

Loading…
Cancel
Save