Merge branch 'master' of http://139.196.74.78:10010/r/drone/drone-web-manage
| | |
| | | cancelBtn: true, |
| | | cancelBtnText: '取消', |
| | | column: [ |
| | | { label: '序号', prop: 'id', width: 70 }, |
| | | { label: '工单编号', prop: 'job_info_num', width: 150 }, |
| | | { label: '工单名称', prop: 'name', width: 150 }, |
| | | { label: '所属单位', prop: 'dept_name', width: 100 }, |
| | | { label: '发起时间', prop: 'create_time', width: 160 }, |
| | | { label: '工单内容', prop: 'content', width: 160 }, |
| | | { label: '关联航线', prop: 'wayline_name', width: 160 }, |
| | | { label: '关联算法', prop: 'ai_type_str', width: 180 }, |
| | | { label: '关联机巢', prop: 'device_names', width: 180 }, |
| | | { label: '序号', prop: 'id', width: 50, ellipsis :true }, |
| | | { label: '工单编号', prop: 'job_info_num', width: 100,ellipsis :true,overHidden:true }, |
| | | { label: '工单名称', prop: 'name', width: 100,ellipsis :true,overHidden:true }, |
| | | { label: '所属单位', prop: 'dept_name', width: 100 ,ellipsis :true }, |
| | | { label: '发起时间', prop: 'create_time', width: 100,ellipsis :true }, |
| | | { label: '工单内容', prop: 'content', width: 160,ellipsis :true,overHidden:true }, |
| | | { label: '关联航线', prop: 'wayline_name', width: 100 ,ellipsis :true,overHidden:true }, |
| | | { label: '关联算法', prop: 'ai_type_str', width: 100,ellipsis :true,overHidden:true }, |
| | | { label: '关联机巢', prop: 'device_names', width: 100,ellipsis :true,overHidden:true }, |
| | | |
| | | { label: '创建人', prop: 'creator_name', width: 180 }, |
| | | { label: '关联机巢', prop: 'device_names', width: 108 }, |
| | | { label: '创建人', prop: 'creator_name', width: 50,ellipsis :true,overHidden:true }, |
| | | { label: '关联机巢', prop: 'device_names', width: 80,ellipsis :true,overHidden:true }, |
| | | { |
| | | label: '工单周期凭次', |
| | | prop: '', |
| | | width: 108, |
| | | formatter: row => this.formatCycleTime(row), |
| | | html: true, |
| | | ellipsis :true,overHidden:true |
| | | |
| | | |
| | | |
| | | }, |
| | | { label: '工单状态', prop: 'status', width: 60 }, |
| | | ], |
| | |
| | | } |
| | | }, |
| | | formatCycleTime(row) { |
| | | return row.begin_time + '-' + row.end_time + ' ' + row.rep_rule_val; |
| | | return row.begin_time + '-' + row.end_time +'<br/>' |
| | | +row.rep_rule_type + row.rep_rule_val; |
| | | }, |
| | | |
| | | async fetchTableData() { |