|
@@ -146,7 +146,7 @@
|
|
|
<!-- 企业情报 -->
|
|
|
<div v-if="type == 'entintel'" style="padding: 0 40px">
|
|
|
<div class="entintel-thead">
|
|
|
- <span style="width: 810px">企业</span>
|
|
|
+ <span style="width: 800px">企业</span>
|
|
|
<span style="width: 100px" class="thead-flex">
|
|
|
<em>更新时间</em>
|
|
|
<el-tooltip class="item" effect="dark" placement="top">
|
|
@@ -160,7 +160,7 @@
|
|
|
<i class="icon-quesion"></i>
|
|
|
</el-tooltip>
|
|
|
</span>
|
|
|
- <span style="width: 100px">分组</span>
|
|
|
+ <span style="width: 120px">分组</span>
|
|
|
<span style="width: 100px">操作</span>
|
|
|
</div>
|
|
|
<ul
|
|
@@ -180,7 +180,7 @@
|
|
|
:key="index"
|
|
|
>
|
|
|
<div
|
|
|
- style="padding: 0 12px; width: 810px; cursor: pointer"
|
|
|
+ style="padding: 0 12px; width: 800px; cursor: pointer"
|
|
|
@click="goViewEnt(item.s_entId, item)"
|
|
|
>
|
|
|
<div class="list_name ent_li_name visited-hd">
|
|
@@ -224,11 +224,11 @@
|
|
|
: '--'
|
|
|
}}
|
|
|
</div>
|
|
|
- <div class="list_li_item item-flex-column">
|
|
|
+ <div class="list_li_item item-flex-column" style="width: 120px">
|
|
|
<span
|
|
|
v-for="(s, j) in formatGroup(item.s_grousp)"
|
|
|
:key="'00' + j"
|
|
|
- style="line-height: 20px"
|
|
|
+ class="item-group-name"
|
|
|
>{{ s }}</span
|
|
|
>
|
|
|
</div>
|
|
@@ -1078,13 +1078,10 @@ export default {
|
|
|
if (res.data === 'success') {
|
|
|
this.$toast('修改分组成功')
|
|
|
this.dialog.group = false
|
|
|
- this.$emit(
|
|
|
- 'onPageChange',
|
|
|
- num,
|
|
|
- filter.entVal ? filter.entVal : '',
|
|
|
- filter.group ? filter.group : '',
|
|
|
- this.listState.pageSize
|
|
|
- )
|
|
|
+ this.$emit('onPageChange')
|
|
|
+ this.$emit('updateGroup', {
|
|
|
+ type: 'get'
|
|
|
+ })
|
|
|
} else {
|
|
|
this.$toast(res.error_msg)
|
|
|
}
|
|
@@ -1382,6 +1379,14 @@ export default {
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
}
|
|
|
+ .item-group-name {
|
|
|
+ display: block;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ width: 100%;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.add-btn {
|
|
@@ -1482,6 +1487,7 @@ export default {
|
|
|
font-size: 14px;
|
|
|
color: #2cb7ca;
|
|
|
font-weight: 400;
|
|
|
+ //white-space: nowrap;
|
|
|
|
|
|
.unit_label {
|
|
|
color: #999999;
|