修改bug
This commit is contained in:
parent
28dc4464d4
commit
57fc4f987e
@ -88,8 +88,8 @@
|
||||
<template slot-scope="scope">
|
||||
<div class="flex-row align-items-center">
|
||||
<el-button size="mini" @click="handleDetail(scope)">明细</el-button>
|
||||
<el-button size="mini" v-if="scope.row.status.code !== 4 && scope.row.status.code !== 2" @click="handleAgain(scope)">重试</el-button>
|
||||
<el-button size="mini" v-if="scope.row.status.code !== 4 && scope.row.status.code !== 2" @click="handleCancel(scope)">取消</el-button>
|
||||
<el-button size="mini" v-if="scope.row.status.code !== 4 && scope.row.status.code !== 2" @click="handleAgain(scope.row)">重试</el-button>
|
||||
<el-button size="mini" v-if="scope.row.status.code !== 4 && scope.row.status.code !== 2" @click="handleCancel(scope.row)">取消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
@ -87,7 +87,7 @@
|
||||
<div class="hx-1-content" v-if="rightActive == 1">
|
||||
<div class="f12 pl-16 pt-16 pb-6">人物画像</div>
|
||||
<el-scrollbar :style="'height:'+`${CommunicationcontentHeight}`+'px'">
|
||||
<div class="p-16" :class="(portraitInfo.gender == 'Male'||portraitInfo.gender == '') ? 'personghximg':'personghximgw'">
|
||||
<div class="p-16" :class="(portraitInfo.gender == 'male'||portraitInfo.gender == '') ? 'personghximg':'personghximgw'">
|
||||
<!-- 基本信息 -->
|
||||
<div class="position_info character-info theme-blue">
|
||||
<div class="character-info-title">基本信息</div>
|
||||
@ -97,7 +97,7 @@
|
||||
</div>
|
||||
<div class="character-info-details flex-row">
|
||||
<div class="character-info-details-label">性别</div>
|
||||
<div class="character-info-details-text">{{(portraitInfo.gender == 'Male' || portraitInfo.gender == '') ?'男':'女'}}</div>
|
||||
<div class="character-info-details-text">{{(portraitInfo.gender == 'male' || portraitInfo.gender == '') ?'男':'女'}}</div>
|
||||
</div>
|
||||
<div class="character-info-details flex-row">
|
||||
<div class="character-info-details-label">电话</div>
|
||||
@ -217,7 +217,7 @@
|
||||
<div ref="targetPerson" class="f16 mt-16"><a class="dot"></a>身份信息</div>
|
||||
<div class="person-info flex-column mt-16">
|
||||
<span>姓名:<a class="color-000">{{portraitInfo.name}}</a></span>
|
||||
<span>性别:<a class="color-000">{{(portraitInfo.gender == 'Male' || portraitInfo.gender == '') ? '男':'女'}}</a></span>
|
||||
<span>性别:<a class="color-000">{{(portraitInfo.gender == 'male' || portraitInfo.gender == '') ? '男':'女'}}</a></span>
|
||||
<span>年龄:<a class="color-000">{{portraitInfo.age}}</a></span>
|
||||
<span>手机号码:<a class="color-000">{{portraitInfo.phoneNumber}}</a></span>
|
||||
<span>身份证号:<a class="color-000">{{portraitInfo.idCardNumber}}</a></span>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user