| | |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'createUser', |
| | | label: '责任人', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'status', |
| | | label: '模具状态', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'model', |
| | | label: '模具型号', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'workShop', |
| | | label: '车间', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'select', |
| | | formatter: this.workShopFormatter, |
| | | optList: () => { |
| | | return this.workshopList |
| | | } |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'shelfNo', |
| | | label: '货架号', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'erpOrder', |
| | | label: 'ERP订单号', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'texture', |
| | | label: '材质', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'supplier', |
| | | label: '供应商', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'userTime', |
| | | label: '投入使用日期', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'date', |
| | | formatter: this.formatDateTime |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'serviceLife', |
| | | label: '使用寿命', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text' |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'number', |
| | | label: '已使用次数', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'person', |
| | | label: '责任人', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | }, |
| | | |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'createTime', |
| | |
| | | minWidth: 100 |
| | | }, |
| | | }, |
| | | workshopList: [] |
| | | } |
| | | }, |
| | | computed: { |
| | |
| | | fun: this.deleteHandle |
| | | }] |
| | | } |
| | | this.table.operator = arr.length>0 ? arr : null |
| | | remote('work_shop').then((response) => { |
| | | if (response.data.code === 0) { |
| | | this.workshopList = response.data.data |
| | | } else { |
| | | this.workshopList = [] |
| | | } |
| | | }) |
| | | }, |
| | | mounted(){ |
| | | |
| | |
| | | } |
| | | }) |
| | | }, |
| | | workShopFormatter(row, column, cellValue) { |
| | | this.workshopList.forEach((obj) => { |
| | | if (obj.value == cellValue) { |
| | | cellValue = obj.label |
| | | } |
| | | }) |
| | | return cellValue |
| | | }, |
| | | addOrUpdateHandle(row){ |
| | | if(row){ |
| | | this.editRow = row |