发起签字刷新文书列表
This commit is contained in:
parent
7731c8c404
commit
8df2713dd5
@ -67,7 +67,7 @@
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="case-detail-des flex-column" v-for="(item,index) in coobligationInfo.caseList" :key="index">
|
||||
<div class="case-detail-des flex-column" :class="index > 0 ? 'border-t-solid-lighter-1':''" v-for="(item,index) in coobligationInfo.caseList" :key="index">
|
||||
<div>
|
||||
<!-- <span><a>案件包名称:</a><a>{{item.casePkg}}</a></span> -->
|
||||
<span><a>金融产品名称:</a><a>{{item.productTypeId}}</a></span>
|
||||
@ -761,9 +761,14 @@ export default {
|
||||
color: #86909C;
|
||||
|
||||
span {
|
||||
width: 25%;
|
||||
width: 24%;
|
||||
display: inline-block;
|
||||
margin: 5px 0;
|
||||
margin-right: 1%;
|
||||
|
||||
white-space: nowrap; /* 防止文本换行 */
|
||||
overflow: hidden; /* 隐藏溢出的文本 */
|
||||
text-overflow: ellipsis; /* 显示省略号 */
|
||||
}
|
||||
|
||||
span a:first-child {
|
||||
@ -773,6 +778,10 @@ export default {
|
||||
|
||||
span a:last-child {
|
||||
color: #1D2129;
|
||||
width: calc(100% - 160px) !important;
|
||||
display: inline-block;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.el-form-item {
|
||||
|
||||
@ -198,7 +198,7 @@
|
||||
|
||||
<!-- 案件文书 -->
|
||||
<div v-if="leftActive == 4" class="case-office-person">
|
||||
<cassWrit :caseId="caseId" />
|
||||
<cassWrit :caseId="caseId" :updateUnm="updateUnmU" />
|
||||
|
||||
</div>
|
||||
|
||||
@ -362,6 +362,7 @@
|
||||
<script>
|
||||
import api from "@/services/caseManagement";
|
||||
import contactPerson from "@/services/contactPerson";
|
||||
import { number } from "echarts";
|
||||
export default {
|
||||
components: {
|
||||
showFile: () => import('../../../components/showFile.vue'),//
|
||||
@ -391,10 +392,17 @@ export default {
|
||||
return {}
|
||||
},
|
||||
},
|
||||
updateUnm: {
|
||||
type: number,
|
||||
default: () => {
|
||||
return 0
|
||||
},
|
||||
},
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
updateUnmU:1,
|
||||
singleremarkvisible:false,
|
||||
fileDialog:null,
|
||||
singlesmsvisible:false,
|
||||
@ -438,6 +446,13 @@ export default {
|
||||
immediate: true,
|
||||
deep: true
|
||||
},
|
||||
updateUnm: {
|
||||
handler(val) {
|
||||
this.updateUnmU ++;
|
||||
},
|
||||
immediate: true,
|
||||
deep: true
|
||||
},
|
||||
},
|
||||
async created() {
|
||||
this.mediaterecordpm.caseId = this.caseId
|
||||
|
||||
@ -113,7 +113,7 @@
|
||||
</div>
|
||||
|
||||
<!-- 中间数据 -->
|
||||
<LayoutContentNew ref="layoutContent" :caseId="caseId" :thisCaseInfo="thisCaseInfo" @startOutboundCall="startOutboundCall" @updateCaseInfoById="getCaseInfoById" />
|
||||
<LayoutContentNew ref="layoutContent" :caseId="caseId" :thisCaseInfo="thisCaseInfo" :updateUnm="updateUnm" @startOutboundCall="startOutboundCall" @updateCaseInfoById="getCaseInfoById" />
|
||||
|
||||
</div>
|
||||
|
||||
@ -166,7 +166,7 @@
|
||||
v-model="singleofficevisible"
|
||||
title="发起签字"
|
||||
trigger="click">
|
||||
<singleofficeWritPopover :caseId="caseId" :singleofficevisible.sync="singleofficevisible"/>
|
||||
<singleofficeWritPopover :caseId="caseId" :singleofficevisible.sync="singleofficevisible" @handleUpdate='getSetTimeWritCaseList'/>
|
||||
<span slot="reference" class="flex-row justify-content-between align-items-center cursor-pointer bottom-case-btn">
|
||||
<i class="f24 el-icon-document-remove color-4E5969"></i>
|
||||
<a class="pl-4 f14">签字</a>
|
||||
@ -352,8 +352,7 @@ export default {
|
||||
calling: false, // 是否在通话
|
||||
isMute: false, //是否静音
|
||||
isPause: false, //是否暂停
|
||||
|
||||
|
||||
updateUnm:1,
|
||||
callingInfoData: {
|
||||
countInit: 0,
|
||||
countOk: 0,
|
||||
@ -477,6 +476,9 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getSetTimeWritCaseList(){
|
||||
this.updateUnm ++;
|
||||
},
|
||||
debtorEntityCardNo(datalist, len) {
|
||||
let datacardno = ''
|
||||
let dataphone = ''
|
||||
|
||||
@ -94,6 +94,7 @@
|
||||
|
||||
<script>
|
||||
import caseManagement from "@/services/caseManagement";
|
||||
import { number } from "echarts";
|
||||
export default {
|
||||
components: {
|
||||
pdfPreview: () => import('@/components/pdfPreview.vue'),//查看PDF文件
|
||||
@ -109,6 +110,12 @@ export default {
|
||||
return ''
|
||||
},
|
||||
},
|
||||
updateUnm: {
|
||||
type: number,
|
||||
default: () => {
|
||||
return 0
|
||||
},
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return{
|
||||
@ -127,8 +134,17 @@ export default {
|
||||
},
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
updateUnm: {
|
||||
handler(val) {
|
||||
this.getWritCaseList();
|
||||
},
|
||||
immediate: true,
|
||||
deep: true
|
||||
},
|
||||
},
|
||||
async created() {
|
||||
await this.getWritCaseList();
|
||||
// await this.getWritCaseList();
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user