| | |
| | | <el-table-column label="归档确认" prop="" align="center" width="150"> |
| | | <template #default="scope"> |
| | | <div style="cursor:pointer;color: #3b82f6;" > |
| | | <span @click="goMenu('toThirteen',scope.row)">{{scope.row.activeConfirm}}</span> |
| | | <span v-if="scope.row.process === 5" @click="goMenu('toThirteen',scope.row)">{{scope.row.activeConfirm}}</span> |
| | | <!-- <span v-else></span>--> |
| | | </div> |
| | | </template> |
| | |
| | | }); |
| | | const goMenu = (toPath,val) => { |
| | | console.log("val",val) |
| | | if(toPath ==='toThirteen' && val.personRecognition && val.personRecognition. recognitionCnt === 0){ |
| | | ElMessage.warning('未进行签字确认,无法查看!') |
| | | return; |
| | | } |
| | | toProcess('edit',val,toPath); |
| | | } |
| | | |