| | |
| | | <a-row :gutter='24'> |
| | | <a-col :lg='6' :md='8' :sm='24' :xl='4'> |
| | | <a-form-item label='流程分类'> |
| | | <j-dict-select-tag |
| | | v-model='queryParam.category' |
| | | dictCode='flow_type' |
| | | placeholder='请选择流程分类' |
| | | ></j-dict-select-tag> |
| | | <j-dict-select-tag v-model='queryParam.category' dictCode='flow_type' placeholder='请选择流程分类'/> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :lg='6' :md='8' :sm='24' :xl='4'> |
| | | <a-form-item label='当前节点'> |
| | | <a-input |
| | | v-model='queryParam.name' |
| | | placeholder='请输入当前节点精确查询' |
| | | ></a-input> |
| | | <a-input v-model='queryParam.name' placeholder='请输入当前节点精确查询'/> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :lg='6' :md='8' :sm='24' :xl='4'> |
| | | <a-form-item label='简要描述'> |
| | | <a-input |
| | | v-model='queryParam.title' |
| | | placeholder='请输入简要描述' |
| | | ></a-input> |
| | | <a-input v-model='queryParam.title' placeholder='请输入简要描述'/> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :lg='8' :md='12' :sm='24' :xl='8'> |
| | | <a-form-item label='任务时间范围'> |
| | | <j-date v-model='queryParam.startTime' :show-time='false' class='query-group-cust' |
| | | date-format='YYYY-MM-DD HH:mm:ss' placeholder='请选择开始时间'></j-date> |
| | | date-format='YYYY-MM-DD HH:mm:ss' placeholder='请选择开始时间'/> |
| | | <span class='query-group-split-cust'></span> |
| | | <j-date v-model='queryParam.endTime' :show-time='false' class='query-group-cust' |
| | | date-format='YYYY-MM-DD HH:mm:ss' placeholder='请选择结束时间'></j-date> |
| | | date-format='YYYY-MM-DD HH:mm:ss' placeholder='请选择结束时间'/> |
| | | </a-form-item> |
| | | </a-col> |
| | | |
| | |
| | | |
| | | <a-table ref='table' :columns='columns' :dataSource='dataSource' :loading='loading' :pagination='ipagination' |
| | | :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}' |
| | | :scroll="{x:'max-content',y:465}" bordered rowKey='id' size='middle' |
| | | :scroll="{x:'max-content'}" bordered rowKey='id' size='middle' |
| | | @change='handleTableChange'> |
| | | <span slot='action' slot-scope='text, record'> |
| | | <a @click='handelDetail(record,text)'>执行/审批</a> |
| | |
| | | import ThirdMaintenanceApprovalModal from './thirdMaintenance/ThirdMaintenanceApprovalModal' |
| | | |
| | | export default { |
| | | name: 'NcDeviceCharactersList', |
| | | name: 'FlowTodo', |
| | | mixins: [JeecgListMixin], |
| | | components: { |
| | | ThirdMaintenanceApprovalModal, |
| | |
| | | title: '流程分类', |
| | | align: 'center', |
| | | dataIndex: 'category_dictText', |
| | | width: 150 |
| | | width: 200 |
| | | }, |
| | | { |
| | | title: '流程名称', |
| | |
| | | { |
| | | title: '流程业务简要描述', |
| | | align: 'center', |
| | | dataIndex: 'description', |
| | | ellipsis: true |
| | | dataIndex: 'description' |
| | | }, |
| | | { |
| | | title: '上一步处理人', |
| | |
| | | title: '当前节点开始时间', |
| | | align: 'center', |
| | | dataIndex: 'createTime', |
| | | width: 150 |
| | | width: 200 |
| | | }, |
| | | { |
| | | title: '操作', |
| | | dataIndex: 'action', |
| | | fixed: 'right', |
| | | scopedSlots: { customRender: 'action' }, |
| | | align: 'center', |
| | | width: 150, |
| | | fixed: 'right' |
| | | width: 100 |
| | | } |
| | | ], |
| | | url: { |
| | | list: '/assign/flow/toTaskBySelf' |
| | | }, |
| | | selectedRowData: {}, |
| | | selectInspectionOrderData: {}, |
| | | selectWeekMaintenanceData: {}, |
| | | selectSecondMaintenanceData: {}, |
| | | selectThirdMaintenanceData: {}, |
| | | selectRepairOrderData: {} |
| | | selectedRowData: {} |
| | | } |
| | | }, |
| | | computed: { |
| | |
| | | */ |
| | | handleTechnicalStatusEvaluation(record) { |
| | | this.selectedRowData = Object.assign({}, record) |
| | | this.$refs.technicalStatusApprovalModal.visible = true |
| | | this.$refs.technicalStatusApprovalModal.title = record.name |
| | | this.$refs.technicalStatusApprovalModal.handleDetail(record) |
| | | }, |
| | |
| | | * @param record |
| | | */ |
| | | handInspectionOrder(record) { |
| | | console.log('record----->', record) |
| | | this.selectedRowData = Object.assign({}, record) |
| | | this.$refs.inspectionOrderHandle.visible = true |
| | | this.$refs.inspectionOrderHandle.title = record.name |
| | |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | </script> |