|
@@ -46,15 +46,43 @@
|
|
|
:data-key="cell.Uid"
|
|
|
@click="clickCell($event, cell)"
|
|
|
@contextmenu.prevent="rightClickHandle($event,cell)"
|
|
|
+ @mouseenter="getRelationEdbInfo(cell)"
|
|
|
>
|
|
|
+
|
|
|
+ <!-- 插入单元格禁止编辑 -->
|
|
|
+ <template v-if="[4,5].includes(cell.DataType) || disabled">
|
|
|
+ <!-- 单元格类型5显示指标浮窗 -->
|
|
|
+ <el-popover
|
|
|
+ v-if="cell.DataType===5&&!disabled"
|
|
|
+ placement="top-start"
|
|
|
+ width="350"
|
|
|
+ trigger="hover"
|
|
|
+ >
|
|
|
+ <ul>
|
|
|
+ <li style="display:flex;margin:10px;">
|
|
|
+ <label style="min-width:80px;">指标名称</label>
|
|
|
+ {{cellrelationEdbInfo.EdbName}}
|
|
|
+ </li>
|
|
|
+ <li style="display:flex;margin:10px;">
|
|
|
+ <label style="min-width:80px;">指标ID</label>
|
|
|
+ {{cellrelationEdbInfo.EdbCode}}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <span
|
|
|
+ slot="reference"
|
|
|
+ :data-rindex="rowHeader[index]"
|
|
|
+ :data-cindex="columnHeader[cell_index]"
|
|
|
+ :data-key="cell.Uid"
|
|
|
+ >{{ cell.ShowValue }}</span>
|
|
|
+ </el-popover>
|
|
|
+
|
|
|
<span
|
|
|
:data-rindex="rowHeader[index]"
|
|
|
:data-cindex="columnHeader[cell_index]"
|
|
|
:data-key="cell.Uid"
|
|
|
- v-if="[4,5].includes(cell.DataType) || disabled"
|
|
|
- >
|
|
|
- {{ cell.ShowValue }}</span
|
|
|
- >
|
|
|
+ v-else
|
|
|
+ >{{ cell.ShowValue }}</span>
|
|
|
+ </template>
|
|
|
|
|
|
<el-autocomplete
|
|
|
v-else
|
|
@@ -157,7 +185,9 @@ export default {
|
|
|
|
|
|
insertRelationArr: [],
|
|
|
|
|
|
- isSelectTargetValueDialog: false
|
|
|
+ isSelectTargetValueDialog: false,
|
|
|
+
|
|
|
+ cellrelationEdbInfo: {}
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -518,6 +548,8 @@ export default {
|
|
|
this.insertTargetCell.Value = value;
|
|
|
this.insertTargetCell.EdbInfoId = edbId;
|
|
|
|
|
|
+ this.$message.success('插入成功')
|
|
|
+
|
|
|
//建立新的关联关系
|
|
|
let relation = {
|
|
|
insert_cell: {
|
|
@@ -636,6 +668,17 @@ export default {
|
|
|
|
|
|
},
|
|
|
|
|
|
+ /* 单元格类型5 浮到上面展示指标信息浮窗 */
|
|
|
+ async getRelationEdbInfo({EdbInfoId,DataType}) {
|
|
|
+ if(DataType!==5||this.disabled) return
|
|
|
+
|
|
|
+ const res = await dataBaseInterface.targetDetail({EdbInfoId})
|
|
|
+
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.cellrelationEdbInfo = res.Data;
|
|
|
+ },
|
|
|
+
|
|
|
/* 初始化8行5列 */
|
|
|
initData(initData=null) {
|
|
|
if(initData) {
|