| | |
| | | <ttable |
| | | @handleSelectionChange="handleSelectionChange" |
| | | :table="table" |
| | | :uploadInfo="uploadInfo" |
| | | :ajaxFun="ajaxFun" |
| | | :prelang="prelang" |
| | | :options="options" |
| | |
| | | </el-form-item> |
| | | <el-form-item prop="name" label="模具名称"> |
| | | <el-input v-model="editRow.name" placeholder="请输入模具名称"></el-input> |
| | | </el-form-item> |
| | | <el-form-item prop="drawingNo" label="模具图号"> |
| | | <el-input v-model="editRow.drawingNo" placeholder="请输入模具图号"></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | | <span slot="footer" class="dialog-footer"> |
| | |
| | | editRow: { |
| | | code: null, |
| | | name: null, |
| | | }, |
| | | uploadInfo: { |
| | | // 是否展示上传EXCEL以及对应的url |
| | | isShow: true, |
| | | url: '/mes/mould/upload', |
| | | download: true, |
| | | fileName: '模具统计表' |
| | | }, |
| | | dialogVisible: false, |
| | | ajaxFun: fetchList, |
| | |
| | | }, |
| | | { |
| | | minWidth: '140px', |
| | | prop: 'createUser', |
| | | label: '责任人', |
| | | prop: 'drawingNo', |
| | | label: '模具图号', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | |
| | | 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 |