|
|
|
|
@ -36,7 +36,7 @@ |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import { getList } from '@/api/processManagement/inPlantProcess.js'; |
|
|
|
|
import inPlantProcessHandle from './components/inPlantProcessHandle.vue'; |
|
|
|
|
import inPlantProcessHandle from './components/inPlantProcessHandle.vue'; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'inPlantProcess', |
|
|
|
|
@ -203,6 +203,27 @@ export default { |
|
|
|
|
span: 12, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
type: 'select', |
|
|
|
|
dicData: [ |
|
|
|
|
{ |
|
|
|
|
value: 0, |
|
|
|
|
label: '未处理', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
value: 1, |
|
|
|
|
label: '已处理', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '填报备注', |
|
|
|
|
prop: 'remarks', |
|
|
|
|
search: false, |
|
|
|
|
sortable: true, |
|
|
|
|
filter: true, |
|
|
|
|
span: 12, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'left', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
@ -212,9 +233,9 @@ export default { |
|
|
|
|
currentPage: 1, |
|
|
|
|
total: 0, |
|
|
|
|
}, |
|
|
|
|
rowData:{}, |
|
|
|
|
showHandle:false, |
|
|
|
|
moldAddMore:true, |
|
|
|
|
rowData: {}, |
|
|
|
|
showHandle: false, |
|
|
|
|
moldAddMore: true, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
@ -230,7 +251,6 @@ export default { |
|
|
|
|
}).then(() => {}); |
|
|
|
|
}, |
|
|
|
|
handle(row) { |
|
|
|
|
|
|
|
|
|
this.rowData = row; |
|
|
|
|
this.showHandle = true; |
|
|
|
|
}, |
|
|
|
|
|