| | |
| | | style: 'color: blue;font-weight: bold' |
| | | } |
| | | ]; |
| | | matCols.map(function (item) { |
| | | if (item.field === 'str6') { |
| | | item.edit = 'text'; |
| | | item.style = 'color: blue;font-weight: bold'; |
| | | } |
| | | }) |
| | | cols.push.apply(cols, matCols); |
| | | cols.push({field: 'matStatus', title: '物料状态', align: 'center', width: 120, templet: '#matStatus'}); |
| | | cols.push({fixed: 'right', title: '操作', align: 'center', toolbar: '#operate', width: 80}); |
| | |
| | | |
| | | // 页面修改 |
| | | table.on('edit(chooseData)', function (obj) { |
| | | updateMatCodeData(obj.data.matNo, Number(obj.value)); |
| | | if (obj.field === 'count') { |
| | | updateMatCodeData(obj.data.matNo, Number(obj.value)); |
| | | } |
| | | }); |
| | | |
| | | // 监听头工具栏事件 |