Merge branch 'main' into 'stg'

Main

See merge request cloud-mediate/mediate-manage-web!40
This commit is contained in:
刘翕 2025-02-20 07:14:07 +00:00
commit 79b715d405
2 changed files with 5 additions and 5 deletions

View File

@ -177,11 +177,10 @@
<template slot-scope="scope">
<div class="flex-row align-items-center">
<el-button size="mini" @click="jumpUrl(`/mediation-management?pkgId=${scope.row.id}&pkgName=${scope.row.pkgName}`)">查看案件</el-button>
<!-- <span v-for="(item,index) in scope.row.mediateStatus" :key="index">
{{ item.status == 1 ? item.count:'' }}
</span> -->
<el-button v-if="scope.row.mediateStatus.find(item=>{return item.status == 1 }).count > 0" size="mini" @click="handleConclude(scope.row)">办结</el-button>
<el-button v-if="(scope.row.caseTotal - scope.row.mediateStatus.find(item=>{return item.status == 2 }).count) > 0" size="mini" @click="handleConclude(scope.row)">办结</el-button>
</div>
</template>
</el-table-column>

View File

@ -25,8 +25,8 @@
<a v-if="item.phoneStatus != null && item.phoneStatus != ''" :class="'case-status'+ $util.getTelephoneTypeData(item.phoneStatus).key">{{$util.getTelephoneTypeData(item.phoneStatus).label}}</a>
</div>
</div>
<div class="flex-row personnel-btn">
<a class="cursor-pointer" v-if="personnelTypeActive !== '申请人'" @click="handleEdit(item)">编辑</a>
<div class="flex-row personnel-btn" v-if="personnelTypeActive !== '申请人'">
<a class="cursor-pointer" @click="handleEdit(item)">编辑</a>
<a class="cursor-pointer ml-8" v-if="personnelTypeActive == '申请人代理人'" @click="handleDelete(item)">删除</a>
<a class="cursor-pointer ml-8" v-if="item.role == 'DEBTOR' && item.type !='本人'" @click="handleDelete(item)">删除</a>
</div>
@ -192,7 +192,8 @@ export default {
line-height: 66px;
}
.personnel-info{
width: 55%;
// width: 55%;
max-width: 75%;
.case-lable{
margin-top: 12px;
.case-status0{