|
|
@ -4,6 +4,7 @@ |
|
|
|
<div class="tab-header webtop"> |
|
|
|
<div>{{ viewTitle }}</div> |
|
|
|
<div> |
|
|
|
<el-button type="primary" size="small" @click="lookCourseOfTheCase()">查看案件</el-button> |
|
|
|
<el-button type="primary" size="small" @click="openCountersign('加签')">加 签</el-button> |
|
|
|
<el-button type="primary" size="small" @click="openAgree('同意')">同 意</el-button> |
|
|
|
<el-button type="danger" size="small" @click="openReject('驳回')">驳 回</el-button> |
|
|
@ -172,6 +173,8 @@ |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 查看案件 --> |
|
|
|
<courseofthecaseInfo v-show="viewState == 2" ref="divAnJian" @doback="resetState" /> |
|
|
|
<!-- 选择待办人 的弹出框--> |
|
|
|
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%"> |
|
|
|
<el-form class="formadd" > |
|
|
@ -216,9 +219,13 @@ |
|
|
|
<script> |
|
|
|
import req from '@/api/caseappeal/caseappeal' |
|
|
|
import { selectStaffListss } from '@/api/Common/dictcommons' |
|
|
|
import courseofthecaseInfo from '../jieanFlow/relation/anjianjinchengInfo' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'CaseAppealDaiBan', |
|
|
|
components: { |
|
|
|
courseofthecaseInfo |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
viewTitle: '', |
|
|
@ -231,6 +238,7 @@ export default { |
|
|
|
bankContract: '', |
|
|
|
bankName: '', |
|
|
|
billNo: '', |
|
|
|
busSid: '', |
|
|
|
caseCreateDate: '', |
|
|
|
caseNo: '', |
|
|
|
caseStage: '', |
|
|
@ -370,6 +378,17 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
lookCourseOfTheCase() { |
|
|
|
if (this.formobj.busSid !== '') { |
|
|
|
this.viewState = 2 |
|
|
|
this.$refs['divAnJian'].showInfo({ sid: this.formobj.busSid }) |
|
|
|
} else { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '暂无案件记录' }) |
|
|
|
} |
|
|
|
}, |
|
|
|
resetState() { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|
// 加签 |
|
|
|
openCountersign(val) { |
|
|
|
this.operation = val |
|
|
|