当鼠标移到行上显示气泡行上加旗袍
parent
7b29b15bb5
commit
58d88c2c4f
|
@ -45,7 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows"
|
||||||
>
|
>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
|
@ -80,7 +82,8 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
|
<el-table-column align="center" prop="SPECIFICATION_TYPES" label="国民经济行业类型" width="300px">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<div v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '8051d985a2bc406a83ea9360b64182b2')) ">
|
<div
|
||||||
|
v-if="(row.SPECIFICATION_TYPES && row.SPECIFICATION_TYPES.length > 0) && ((!row.CATEGORY_LIST) || (!row.CATEGORY_LIST[0]) || (row.CATEGORY_LIST[0].CATEGORY_ID !== '8051d985a2bc406a83ea9360b64182b2')) ">
|
||||||
<el-tag
|
<el-tag
|
||||||
v-for="tag in row.SPECIFICATION_TYPES"
|
v-for="tag in row.SPECIFICATION_TYPES"
|
||||||
:key="tag.BUS_LIBRARY_LABELS_ID"
|
:key="tag.BUS_LIBRARY_LABELS_ID"
|
||||||
|
@ -101,7 +104,12 @@
|
||||||
{{ row.STATUS === '0' ? '停用' : '正常' }}
|
{{ row.STATUS === '0' ? '停用' : '正常' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column :show-overflow-tooltip="true" align="center" prop="UPLOAD_USER_NAME" width="100px" label="数据来源">
|
<el-table-column
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
align="center"
|
||||||
|
prop="UPLOAD_USER_NAME"
|
||||||
|
width="100px"
|
||||||
|
label="数据来源">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
{{ !row.CORP_NAME ? '自建' : row.CORP_NAME }}
|
{{ !row.CORP_NAME ? '自建' : row.CORP_NAME }}
|
||||||
</template>
|
</template>
|
||||||
|
@ -110,26 +118,82 @@
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<el-row style="margin-bottom: 10px">
|
<el-row style="margin-bottom: 10px">
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-button v-show="!row.LOCKTOOL && edit" type="primary" icon="el-icon-edit" size="mini" @click="handleEdit(row)">编辑</el-button>
|
<el-button
|
||||||
<el-button v-show="!row.LOCKTOOL && del" type="danger" icon="el-icon-delete" size="mini" @click="handleDelete(row)">删除</el-button>
|
v-show="!row.LOCKTOOL && edit"
|
||||||
<el-button v-if="!row.LOCKTOOL && edit" type="success" icon="el-icon-lock" size="mini" @click="handleLock(row,'1')">锁定</el-button>
|
type="primary"
|
||||||
<el-button v-if="row.LOCKTOOL && edit" type="info" icon="el-icon-unlock" size="mini" @click="handleLock(row,'0')">解锁</el-button>
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
@click="handleEdit(row)">编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-show="!row.LOCKTOOL && del"
|
||||||
|
type="danger"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
size="mini"
|
||||||
|
@click="handleDelete(row)">删除
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="!row.LOCKTOOL && edit"
|
||||||
|
type="success"
|
||||||
|
icon="el-icon-lock"
|
||||||
|
size="mini"
|
||||||
|
@click="handleLock(row,'1')">锁定
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="row.LOCKTOOL && edit"
|
||||||
|
type="info"
|
||||||
|
icon="el-icon-unlock"
|
||||||
|
size="mini"
|
||||||
|
@click="handleLock(row,'0')">解锁
|
||||||
|
</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row style="margin-bottom: 10px">
|
<el-row style="margin-bottom: 10px">
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-button type="info" icon="el-icon-view" size="mini" @click="getInformation(row)">查看</el-button>
|
<el-button type="info" icon="el-icon-view" size="mini" @click="getInformation(row)">查看</el-button>
|
||||||
<el-button v-if="!row.ISTOPTIME && edit" type="success" icon="el-icon-edit-outline" size="mini" @click="handleTop(row,'1')">置顶</el-button>
|
<el-button
|
||||||
<el-button v-if="row.ISTOPTIME && edit" type="warning" icon="el-icon-edit-outline" size="mini" @click="handleTop(row,'2')">取消置顶</el-button>
|
v-if="!row.ISTOPTIME && edit"
|
||||||
|
type="success"
|
||||||
|
icon="el-icon-edit-outline"
|
||||||
|
size="mini"
|
||||||
|
@click="handleTop(row,'1')">置顶
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="row.ISTOPTIME && edit"
|
||||||
|
type="warning"
|
||||||
|
icon="el-icon-edit-outline"
|
||||||
|
size="mini"
|
||||||
|
@click="handleTop(row,'2')">取消置顶
|
||||||
|
</el-button>
|
||||||
<el-button type="warning" icon="el-icon-printer" size="mini" @click="handleExport(row)">导出</el-button>
|
<el-button type="warning" icon="el-icon-printer" size="mini" @click="handleExport(row)">导出</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-button v-show="!row.LOCKTOOL && edit" type="primary" icon="el-icon-view" size="mini" @click="openUpdateFile(row)">替换</el-button>
|
<el-button
|
||||||
<el-button v-show="edit" type="primary" icon="el-icon-printer" size="mini" @click="openUpdateLog(row)">替换记录</el-button>
|
v-show="!row.LOCKTOOL && edit"
|
||||||
<el-button v-if="row.STATUS === '0' && edit" type="success" icon="el-icon-edit-outline" size="mini" @click="setStatus(row,'1')">启用</el-button>
|
type="primary"
|
||||||
<el-button v-if="row.STATUS === '1' && edit" type="warning" icon="el-icon-edit-outline" size="mini" @click="setStatus(row,'0')">停用</el-button>
|
icon="el-icon-view"
|
||||||
|
size="mini"
|
||||||
|
@click="openUpdateFile(row)">替换
|
||||||
|
</el-button>
|
||||||
|
<el-button v-show="edit" type="primary" icon="el-icon-printer" size="mini" @click="openUpdateLog(row)">
|
||||||
|
替换记录
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="row.STATUS === '0' && edit"
|
||||||
|
type="success"
|
||||||
|
icon="el-icon-edit-outline"
|
||||||
|
size="mini"
|
||||||
|
@click="setStatus(row,'1')">启用
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
v-if="row.STATUS === '1' && edit"
|
||||||
|
type="warning"
|
||||||
|
icon="el-icon-edit-outline"
|
||||||
|
size="mini"
|
||||||
|
@click="setStatus(row,'0')">停用
|
||||||
|
</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</template>
|
</template>
|
||||||
|
@ -164,6 +228,7 @@ import updateFile from './updateFile.vue'
|
||||||
import updateLog from './updateLog.vue'
|
import updateLog from './updateLog.vue'
|
||||||
import UpdateLog from './updateLog.vue'
|
import UpdateLog from './updateLog.vue'
|
||||||
import condition from './condition.vue'
|
import condition from './condition.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { UpdateLog, Pagination, editTextLibrary, textLibraryInfo, updateFile, updateLog, condition },
|
components: { UpdateLog, Pagination, editTextLibrary, textLibraryInfo, updateFile, updateLog, condition },
|
||||||
directives: { waves },
|
directives: { waves },
|
||||||
|
@ -476,6 +541,52 @@ export default {
|
||||||
})
|
})
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows"
|
||||||
>
|
>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
|
@ -485,6 +487,52 @@ export default {
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.$message.success('添加失败')
|
this.$message.success('添加失败')
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
>
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
type="selection"
|
type="selection"
|
||||||
|
@ -476,7 +477,54 @@ export default {
|
||||||
})
|
})
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -45,8 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
>
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
type="selection"
|
type="selection"
|
||||||
|
@ -485,6 +486,52 @@ export default {
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.$message.success('添加失败')
|
this.$message.success('添加失败')
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
>
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="false"
|
v-if="false"
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
|
@ -513,6 +514,52 @@ export default {
|
||||||
})
|
})
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,9 @@
|
||||||
tooltip-effect="dark"
|
tooltip-effect="dark"
|
||||||
border
|
border
|
||||||
fit
|
fit
|
||||||
highlight-current-row>
|
highlight-current-row
|
||||||
>
|
@cell-mouse-enter="enterSelectionRows"
|
||||||
|
@cell-mouse-leave="leaveSelectionRows">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:reserve-selection="true"
|
:reserve-selection="true"
|
||||||
type="selection"
|
type="selection"
|
||||||
|
@ -486,6 +487,52 @@ export default {
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.$message.success('添加失败')
|
this.$message.success('添加失败')
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
enterSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.createTips(event, row, '数据已置顶')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
leaveSelectionRows(row, column, cell, event) {
|
||||||
|
if (row.ISTOPTIME) {
|
||||||
|
this.removeTips(row)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createTips(el, row, value) {
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDom = document.createElement('div')
|
||||||
|
tooltipDom.style.cssText = `
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 400px;
|
||||||
|
max-height: 400px;
|
||||||
|
position: absolute;
|
||||||
|
top: ${el.clientY + 5}px;
|
||||||
|
left: ${el.clientX}px;
|
||||||
|
padding:5px 10px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 12px;
|
||||||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #595959;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
z-index: 19999;
|
||||||
|
box-shadow: 0 4px 12px 1px #ccc;
|
||||||
|
`
|
||||||
|
tooltipDom.innerHTML = value
|
||||||
|
tooltipDom.setAttribute('id', `tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
// 将浮层插入到body中
|
||||||
|
document.body.appendChild(tooltipDom)
|
||||||
|
},
|
||||||
|
removeTips(row) {
|
||||||
|
console.log(row, 'row')
|
||||||
|
const { BUS_TEXT_LIBRARY_ID } = row
|
||||||
|
const tooltipDomLeave = document.querySelectorAll(`#tooltip-${BUS_TEXT_LIBRARY_ID}`)
|
||||||
|
if (tooltipDomLeave.length) {
|
||||||
|
tooltipDomLeave.forEach(dom => {
|
||||||
|
document.body.removeChild(dom)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue