| | |
| | | |
| | | columns:[ |
| | | {type: 'seq', title: t('basicData.Number'), width: 80}, |
| | | {field: 'check', title: '选择', width: 250, cellRender: checkboxCellRender }, |
| | | {field: "mq", title: '幕墙模式', width: 80, slots: { default: 'state' }}, |
| | | {field: "hp", title: '允许横排', width: 80, slots: { default: 'state' }}, |
| | | {field: "tempering", title: '钢化', width: 80, slots: { default: 'state' }}, |
| | | |
| | | {field: 'process_id',width: 150, title: t('processCard.processId'), sortable: true}, |
| | | {field: 'technology_number',width: 70, title: '层', sortable: true}, |
| | | {field: 'TotalFloors',width: 150, title: '总层数', sortable: true}, |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | </script> |
| | | |
| | | <template> |
| | |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <template #state="{ row,column}"> |
| | | <el-checkbox |
| | | v-if="row[column.field] === 1" |
| | | :checked="true"/> |
| | | <el-checkbox |
| | | v-else |
| | | :checked="false"/> |
| | | </template> |
| | | </vxe-grid> |
| | | </div> |
| | | </template> |