|
@@ -694,11 +694,13 @@ const onKnowConfirm = () => {
|
|
|
</template>
|
|
|
<!-- 出质人 -->
|
|
|
<template #pledgor="scope">
|
|
|
- <span :class="{'highlight-clickable': scope.row.company_id}" @click="goEntPortrayal(scope.row.company_id)">{{scope.row.pledgor}}</span>
|
|
|
+ <span v-if="scope.row.pledgor" :class="{'highlight-clickable': scope.row.company_id}" @click="goEntPortrayal(scope.row.company_id)">{{scope.row.pledgor}}</span>
|
|
|
+ <span v-else class="no-data-line">-</span>
|
|
|
</template>
|
|
|
<!-- 质权人 -->
|
|
|
<template #pledgee="scope">
|
|
|
- <span :class="{'highlight-clickable': scope.row.company_id}" @click="goEntPortrayal(scope.row.company_id)">{{scope.row.pawnee}}</span>
|
|
|
+ <span v-if="scope.row.pawnee" :class="{'highlight-clickable': scope.row.company_id}" @click="goEntPortrayal(scope.row.company_id)">{{scope.row.pawnee}}</span>
|
|
|
+ <span v-else class="no-data-line">-</span>
|
|
|
</template>
|
|
|
</ModuleTable>
|
|
|
<!-- 行政处罚 -->
|
|
@@ -710,7 +712,8 @@ const onKnowConfirm = () => {
|
|
|
>
|
|
|
<!-- 处罚内容(点击可展开) -->
|
|
|
<template #content="scope">
|
|
|
- <TextExpand :text="scope.row.punish_content"></TextExpand>
|
|
|
+ <TextExpand v-if="scope.row.punish_content" :text="scope.row.punish_content"></TextExpand>
|
|
|
+ <span v-else class="no-data-line">-</span>
|
|
|
</template>
|
|
|
</ModuleTable>
|
|
|
<!-- 经营异常 -->
|
|
@@ -742,7 +745,8 @@ const onKnowConfirm = () => {
|
|
|
>
|
|
|
<!-- 被执行人 -->
|
|
|
<template #person="scope">
|
|
|
- <span>{{scope.row.executee}}</span>
|
|
|
+ <span v-if="scope.row.executee">{{scope.row.executee}}</span>
|
|
|
+ <span v-else class="no-data-line">-</span>
|
|
|
</template>
|
|
|
</ModuleTable>
|
|
|
</template>
|
|
@@ -939,8 +943,15 @@ const onKnowConfirm = () => {
|
|
|
color: $color_main;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+ .no-data-line{
|
|
|
+ color: #999;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
}
|
|
|
::v-deep{
|
|
|
+ .module-card:first-child{
|
|
|
+ padding-top: 16px;
|
|
|
+ }
|
|
|
.tab-contents-card{
|
|
|
.el-loading-mask{
|
|
|
left: -40px;
|
|
@@ -1022,5 +1033,17 @@ const onKnowConfirm = () => {
|
|
|
// 解决 scrollIntoView 被固定定位元素遮挡的问题
|
|
|
scroll-margin-top: 100px;
|
|
|
}
|
|
|
+ .text-container{
|
|
|
+ text-align: justify;
|
|
|
+ }
|
|
|
+ // 表格某一项内容设置对齐方式(class类名即为字段名)
|
|
|
+ .td_change_content,
|
|
|
+ .td_included_reason,
|
|
|
+ .td_content_before,
|
|
|
+ .td_content_after,
|
|
|
+ .td_allow_content{
|
|
|
+ text-align: justify;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
</style>
|