|
@@ -60,7 +60,7 @@
|
|
|
<div style="margin-top: 15px;">
|
|
|
<div class=" infinite-list" :style="dynamicStyle" >
|
|
|
<div v-if='noticeList.length !=0' :class=" ishsouetan == false? 'imghse hyeg' : 'hyeg'" style="display: flex;flex-wrap: wrap;justify-content: space-between; " >
|
|
|
- <div :class=" ishsouetan == false? 'box_3dr zuihsoue flex-col' : 'box_3dr flex-col'" v-for="(item,index ) in noticeList" :key="index" >
|
|
|
+ <div @mouseenter="showContent" @mouseleave="hideContent" :class=" ishsouetan == false? 'box_3dr zuihsoue flex-col' : 'box_3dr flex-col'" v-for="(item,index ) in noticeList" :key="index" >
|
|
|
<div :class=" index == 0?'nshge box_4 flex-row' : 'box_4 flex-row'" style="justify-content: space-between;margin: 0;">
|
|
|
<div @click="handleSelectionChange(item)" style="display: flex;align-items: center; cursor: pointer;" >
|
|
|
<img
|
|
@@ -124,7 +124,7 @@
|
|
|
<!-- <span class="text_20">设备地址:192.168.1.1</span> -->
|
|
|
<span class="text_20" >注册资金:{{item.zczb == null?'暂无数据 ': item.zczb}}万元</span>
|
|
|
</div>
|
|
|
- <div class="xnhse">
|
|
|
+ <div class="xnhse"v-show="isHidden">
|
|
|
<div v-hasPermi="['zhaoshangV3:tzfk:edit']" @click="handleUpdate(item)">
|
|
|
<img
|
|
|
referrerpolicy="no-referrer"
|
|
@@ -137,7 +137,7 @@
|
|
|
src="../../../assets/images/icon_tzfk_mp_gd_ls.png"/>
|
|
|
<span>历史投资</span>
|
|
|
</div>
|
|
|
- <div @click="handleDelete(item)" v-hasPermi="['zhaoshangV3:tzfk:remove']">
|
|
|
+ <div @click="handleDelete(item)" v-hasPermi="['zhaoshangV3:tzfk:remove']">
|
|
|
<img
|
|
|
referrerpolicy="no-referrer"
|
|
|
|
|
@@ -255,6 +255,7 @@ export default {
|
|
|
{ required: true, message: "公告类型不能为空", trigger: "change" }
|
|
|
]
|
|
|
},
|
|
|
+ isHidden:false,
|
|
|
tableMaxHeight:380
|
|
|
}
|
|
|
},
|
|
@@ -306,6 +307,12 @@ export default {
|
|
|
this.queryParams.pageNum = 1
|
|
|
this.getList()
|
|
|
},
|
|
|
+ showContent() {
|
|
|
+ this.isHidden = true;
|
|
|
+ },
|
|
|
+ hideContent() {
|
|
|
+ this.isHidden = false;
|
|
|
+ },
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
this.resetForm("queryForm")
|