|
@@ -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="cell.DataType === 4 || disabled"
|
|
|
- >
|
|
|
- {{ cell.ShowValue }}</span
|
|
|
- >
|
|
|
+ v-else
|
|
|
+ >{{ cell.ShowValue }}</span>
|
|
|
+ </template>
|
|
|
|
|
|
<el-autocomplete
|
|
|
v-else
|
|
@@ -64,15 +92,19 @@
|
|
|
:data-key="cell.Uid"
|
|
|
:data-rindex="rowHeader[index]"
|
|
|
:data-cindex="columnHeader[cell_index]"
|
|
|
+ :highlight-first-item="cell.DataType===2"
|
|
|
@select="selectTarget($event,cell)"
|
|
|
@click="clickCell($event, cell)"
|
|
|
@change.native="changeVal($event, cell)"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<edbDetailPopover :info="scope.item">
|
|
|
- <div slot="reference">
|
|
|
- {{ scope.item.EdbName }}
|
|
|
+ <div slot="reference" v-if="cell.DataType===2" class="edb-item">
|
|
|
+ <span class="edb-item-name text_oneLine">{{ scope.item.EdbName }}</span>
|
|
|
+ <i class="el-icon-check" style="color:#0052D9;font-size:18px;"/>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div slot="reference" v-else>{{ scope.item.EdbName }}</div>
|
|
|
</edbDetailPopover>
|
|
|
</template>
|
|
|
</el-autocomplete>
|
|
@@ -83,13 +115,20 @@
|
|
|
|
|
|
<!-- 右键菜单 -->
|
|
|
<div class="contextMenu-wrapper" id="contextMenu-wrapper" @mouseleave="hideContextMenu">
|
|
|
- <div class="item" v-for="menu in config.contextMenuOption" :key="menu.key" @click="handleContext(menu.key)">{{menu.label}}</div>
|
|
|
+ <div :class="['item',{'deletesty': menu.key==='reset'}]" v-for="menu in config.contextMenuOption" :key="menu.key" @click="handleContext(menu.key)">{{menu.label}}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<div class="nodata" v-else>
|
|
|
<tableNoData text="暂无数据"/>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- 选择指标 -->
|
|
|
+ <selectTargetValueDia
|
|
|
+ :isShow.sync="isSelectTargetValueDialog"
|
|
|
+ @insert="insertSelectData"
|
|
|
+ ref="selectTargetValueRef"
|
|
|
+ />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -102,18 +141,22 @@ import {
|
|
|
getRightClickMenu,
|
|
|
checkDateFormat,
|
|
|
setFocus,
|
|
|
- findCellByKey
|
|
|
-
|
|
|
+ findCellByKey,
|
|
|
+ resetRelationStyle,
|
|
|
+ resetDialogCellStyle
|
|
|
} from "../common/customTable";
|
|
|
import * as sheetInterface from "@/api/modules/sheetApi.js";
|
|
|
-import md5 from '@/utils/md5.js'
|
|
|
+import { dataBaseInterface } from '@/api/api.js';
|
|
|
+import md5 from '@/utils/md5.js';
|
|
|
+import selectTargetValueDia from './selectTargetValueDia.vue';
|
|
|
export default {
|
|
|
props: {
|
|
|
disabled: { //是否只预览
|
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
+ default: false,
|
|
|
}
|
|
|
},
|
|
|
+ components: { selectTargetValueDia },
|
|
|
computed: {
|
|
|
//列头
|
|
|
columnHeader() {
|
|
@@ -131,15 +174,21 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
config: {
|
|
|
- data: [],
|
|
|
+ data: [], //单元格类型 1日期格 2指标格 3自定义输入 4插入值 有关联的日期和指标格 5弹窗里的插入值 有关联日期格
|
|
|
contextMenuOption: [],
|
|
|
},
|
|
|
|
|
|
- selectCell: {},
|
|
|
+ selectCell: {},//选中单元格info
|
|
|
+
|
|
|
+ rightClickCell: {},//右键单元格 key c r
|
|
|
+
|
|
|
+ insertTargetCell: {},//选择右键插入指标的单元格 可和右键单元格不一样 key c r
|
|
|
+
|
|
|
+ insertRelationArr: [],
|
|
|
|
|
|
- rightClickCell: {},
|
|
|
+ isSelectTargetValueDialog: false,
|
|
|
|
|
|
- insertRelationArr: []
|
|
|
+ cellrelationEdbInfo: {}
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -148,17 +197,21 @@ export default {
|
|
|
methods: {
|
|
|
|
|
|
async searchTarget(query,cb) {
|
|
|
- if(!query) return cb([])
|
|
|
- // cb([])
|
|
|
+ if(!query||checkDateFormat(query)) return cb([])
|
|
|
|
|
|
- const res = await sheetInterface.searchTarget({
|
|
|
- KeyWord: query,
|
|
|
- CurrentIndex: 1,
|
|
|
- PageSize: 1000
|
|
|
- })
|
|
|
+ const { DataType,EdbInfoId } = this.selectCell;
|
|
|
+
|
|
|
+ const res = DataType===2
|
|
|
+ ? await dataBaseInterface.targetDetail({EdbInfoId})
|
|
|
+ : await sheetInterface.searchTarget({
|
|
|
+ KeyWord: query,
|
|
|
+ CurrentIndex: 1,
|
|
|
+ PageSize: 1000
|
|
|
+ })
|
|
|
if(res.Ret !== 200) return
|
|
|
|
|
|
- cb(res.Data.List)
|
|
|
+ let arr = DataType===2 ? [res.Data] : (res.Data.List||[])
|
|
|
+ cb(arr);
|
|
|
},
|
|
|
|
|
|
/* 单击 */
|
|
@@ -171,14 +224,16 @@ export default {
|
|
|
setFocus(e);
|
|
|
|
|
|
//插入值时寻找关联依赖的单元格 设置选框
|
|
|
- if(cell.DataType === 4) {
|
|
|
+ if([4,5].includes(cell.DataType)) {
|
|
|
const { key } = e.target.dataset;
|
|
|
if(!this.insertRelationArr.find(_ => _.key===key)) return
|
|
|
let { relation_date,relation_edb } = this.insertRelationArr.find(_ => _.key===key)
|
|
|
|
|
|
- setRelationStyle(relation_date)
|
|
|
- setRelationStyle(relation_edb)
|
|
|
+ relation_date.key && setRelationStyle(relation_date)
|
|
|
+ relation_edb.key && setRelationStyle(relation_edb)
|
|
|
}
|
|
|
+
|
|
|
+ this.isSelectTargetValueDialog&&this.$refs.selectTargetValueRef.chooseEdb(this.$refs.selectTargetValueRef.edbInfo)
|
|
|
},
|
|
|
|
|
|
/* 插入值 往左往上寻找同行同列是否有符合条件的一指标一日期 */
|
|
@@ -223,10 +278,10 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 建立插入单元格和依赖单元格关联关系
|
|
|
- setRelation(data) {
|
|
|
+ setRelation(data,cellType=4) {
|
|
|
const { insert_cell } = data;
|
|
|
let relation_obj = {
|
|
|
- type: 4,
|
|
|
+ type: cellType,
|
|
|
key: insert_cell.key,
|
|
|
relation_date: {
|
|
|
type: 1,
|
|
@@ -291,24 +346,27 @@ export default {
|
|
|
|
|
|
},
|
|
|
|
|
|
- /* 选择指标 单元格类型为2*/
|
|
|
+ /* 选择指标 单元格类型为2 已经是指标单元格了就重置单元格 否则就视为选择指标*/
|
|
|
selectTarget(e,cell) {
|
|
|
const { EdbName,EdbInfoId } = e;
|
|
|
|
|
|
- cell.DataType = 2;
|
|
|
- cell.DataTime = '';
|
|
|
- cell.ShowValue = EdbName;
|
|
|
- cell.Value = EdbName;
|
|
|
- cell.EdbInfoId = EdbInfoId;
|
|
|
-
|
|
|
+ //如果已经是指标单元格了再次点击就清空
|
|
|
+ if(cell.DataType===2&&cell.EdbInfoId) {
|
|
|
+ this.clearCell()
|
|
|
+ }else {
|
|
|
+ cell.DataType = 2;
|
|
|
+ cell.DataTime = '';
|
|
|
+ cell.ShowValue = EdbName;
|
|
|
+ cell.Value = EdbName;
|
|
|
+ cell.EdbInfoId = EdbInfoId;
|
|
|
+ }
|
|
|
|
|
|
- this.checkCellRelation(e,cell)
|
|
|
+ this.checkCellRelation(cell)
|
|
|
},
|
|
|
|
|
|
/* 输入框失焦 */
|
|
|
async changeVal(e, cell) {
|
|
|
// 是日期格式 DataType为1
|
|
|
- //是指标 DataType为2
|
|
|
// 否则是3
|
|
|
|
|
|
const {value} = e.target;
|
|
@@ -319,6 +377,9 @@ export default {
|
|
|
cell.EdbInfoId = 0;
|
|
|
cell.DataTime = '';
|
|
|
}else {
|
|
|
+ //指标类型不做格式处理
|
|
|
+ if(cell.DataType===2) return
|
|
|
+
|
|
|
console.log(checkDateFormat(value))
|
|
|
if(checkDateFormat(value)) { //是日期格式
|
|
|
cell.DataType = 1;
|
|
@@ -337,11 +398,11 @@ export default {
|
|
|
}
|
|
|
|
|
|
//判断是否是有插入值的依赖单元格 更新值或重置关系
|
|
|
- this.checkCellRelation(e,cell)
|
|
|
+ this.checkCellRelation(cell)
|
|
|
},
|
|
|
|
|
|
/* 当前单元格是否和插入值有关联 无就不管 */
|
|
|
- async checkCellRelation(e,cell) {
|
|
|
+ async checkCellRelation(cell) {
|
|
|
if(!this.insertRelationArr.length) return
|
|
|
|
|
|
const key= cell.Uid;
|
|
@@ -360,7 +421,7 @@ export default {
|
|
|
//刷新插入值结果
|
|
|
let params = null;
|
|
|
if(relation_date.key === key && cell.DataType === 1) { //修改的是依赖日期格
|
|
|
- let { EdbInfoId } = findCellByKey(this.config.data,relation_edb.key)
|
|
|
+ let { EdbInfoId } = findCellByKey(this.config.data,relation.key)
|
|
|
params = {
|
|
|
EdbInfoId,
|
|
|
Date: cell.ShowValue
|
|
@@ -377,12 +438,12 @@ export default {
|
|
|
const res = await sheetInterface.insertData(params)
|
|
|
if(res.Ret !==200) return
|
|
|
|
|
|
- !res.Data && this.updateInsertCell(relation.key,true);
|
|
|
+ !res.Data && this.updateInsertCell(relation.key);
|
|
|
|
|
|
res.Data && this.config.data.forEach(row => {
|
|
|
row.forEach(cell => {
|
|
|
if(cell.Uid === relation.key) {
|
|
|
- cell.DataType = 4;
|
|
|
+ cell.DataType = relation.type;
|
|
|
cell.ShowValue = res.Data;
|
|
|
cell.Value = res.Data;
|
|
|
cell.EdbInfoId = params.EdbInfoId;
|
|
@@ -400,17 +461,15 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 清除插入值单元格式和关联关系
|
|
|
- updateInsertCell(key,initValue=false) {
|
|
|
+ updateInsertCell(key) {
|
|
|
this.config.data.forEach(row => {
|
|
|
row.forEach(cell => {
|
|
|
if(cell.Uid === key) {
|
|
|
cell.DataType = 3;
|
|
|
cell.EdbInfoId = 0;
|
|
|
cell.DataTime = '';
|
|
|
- if(initValue) {
|
|
|
- cell.ShowValue = '';
|
|
|
- cell.Value = '';
|
|
|
- }
|
|
|
+ cell.ShowValue = '';
|
|
|
+ cell.Value = '';
|
|
|
}
|
|
|
})
|
|
|
})
|
|
@@ -466,12 +525,61 @@ export default {
|
|
|
'insert-col-right': this.insertCol,
|
|
|
'insert-row-up': this.insertRow,
|
|
|
'insert-row-down': this.insertRow,
|
|
|
- 'insert-value': this.insertValue
|
|
|
+ 'insert-value': this.insertValue,
|
|
|
+ 'choose-target': this.selectTargetOpen,
|
|
|
+ 'reset': this.clearCell
|
|
|
}
|
|
|
keyMap[key] && keyMap[key](key)
|
|
|
+
|
|
|
this.hideContextMenu()
|
|
|
},
|
|
|
|
|
|
+ /* 打开选择指标弹窗
|
|
|
+ 打开弹窗后仍可以在页面上点击 多存一个选择指标时的信息 */
|
|
|
+ selectTargetOpen() {
|
|
|
+ this.insertTargetCell = this.selectCell;
|
|
|
+ resetDialogCellStyle();
|
|
|
+ setRelationStyle({ key:this.insertTargetCell.Uid },'td-choose-insert-target')
|
|
|
+ this.isSelectTargetValueDialog = true;
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 插入选择指标的值 */
|
|
|
+ insertSelectData({ edbId,value }) {
|
|
|
+
|
|
|
+ this.insertTargetCell.DataType = 5;
|
|
|
+ this.insertTargetCell.ShowValue = value;
|
|
|
+ this.insertTargetCell.Value = value;
|
|
|
+ this.insertTargetCell.EdbInfoId = edbId;
|
|
|
+ this.insertTargetCell.DataTime = this.selectCell.ShowValue;
|
|
|
+
|
|
|
+ this.$message.success('插入成功')
|
|
|
+
|
|
|
+ //建立新的关联关系
|
|
|
+ let relation = {
|
|
|
+ insert_cell: {
|
|
|
+ key: this.insertTargetCell.Uid,
|
|
|
+ relation_date: this.selectCell.Uid,
|
|
|
+ relation_edb: '',
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ this.setRelation(relation,5);
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 清除单元格内容 格式 关联关系 */
|
|
|
+ clearCell() {
|
|
|
+ if([4,5].includes(this.selectCell.DataType)) resetRelationStyle();
|
|
|
+
|
|
|
+ this.selectCell.DataType = 3;
|
|
|
+ this.selectCell.ShowValue = '';
|
|
|
+ this.selectCell.Value = '';
|
|
|
+ this.selectCell.DataTime = '';
|
|
|
+ this.selectCell.EdbInfoId = 0;
|
|
|
+
|
|
|
+ this.checkCellRelation(this.selectCell)
|
|
|
+ },
|
|
|
+
|
|
|
/* 删除行列 */
|
|
|
delColOrRow() {
|
|
|
let { rindex,cindex } = this.rightClickCell;
|
|
@@ -486,7 +594,8 @@ export default {
|
|
|
//删除时清除关系
|
|
|
if(this.insertRelationArr.length) {
|
|
|
let delCellIds = this.config.data.map(row => row[index].Uid);
|
|
|
- this.insertRelationArr = this.insertRelationArr.filter(_ => !delCellIds.includes(_.key)&&!delCellIds.includes(_.relation_date.key)&&!delCellIds.includes(_.relation_edb.key))
|
|
|
+
|
|
|
+ this.clearRelationInsertCell(delCellIds);
|
|
|
}
|
|
|
|
|
|
this.config.data.forEach(row => {
|
|
@@ -502,13 +611,27 @@ export default {
|
|
|
if(this.insertRelationArr.length) {
|
|
|
//删除时清除关系
|
|
|
let delCellIds = this.config.data[index].map(cell => cell.Uid);
|
|
|
- this.insertRelationArr = this.insertRelationArr.filter(_ => !delCellIds.includes(_.key)&&!delCellIds.includes(_.relation_date.key)&&!delCellIds.includes(_.relation_edb.key));
|
|
|
+
|
|
|
+ this.clearRelationInsertCell(delCellIds);
|
|
|
}
|
|
|
|
|
|
this.config.data.splice(index,1)
|
|
|
|
|
|
}
|
|
|
- console.log(this.insertRelationArr)
|
|
|
+ // console.log(this.insertRelationArr)
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 删除时清除关联关系 和删除单元格有关联的插入值单元格和 */
|
|
|
+ clearRelationInsertCell(delCellIds) {
|
|
|
+ //清除关联插入值得单元格
|
|
|
+ let haveRelationArr = this.insertRelationArr.filter(_ => delCellIds.includes(_.relation_date.key)||delCellIds.includes(_.relation_edb.key));
|
|
|
+ // console.log(haveRelationArr)
|
|
|
+
|
|
|
+ haveRelationArr.forEach(relation => {
|
|
|
+ !delCellIds.includes(relation)&&this.updateInsertCell(relation.key);
|
|
|
+ })
|
|
|
+
|
|
|
+ this.insertRelationArr = this.insertRelationArr.filter(_ => !delCellIds.includes(_.key)&&!delCellIds.includes(_.relation_date.key)&&!delCellIds.includes(_.relation_edb.key))
|
|
|
},
|
|
|
|
|
|
/* 插入列 */
|
|
@@ -549,6 +672,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) {
|
|
@@ -645,8 +779,17 @@ export default {
|
|
|
border-left: none;
|
|
|
border-right: none;
|
|
|
}
|
|
|
- &.insert {
|
|
|
- background: #ffefdd;
|
|
|
+ &.td-choose-insert-target::after {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ outline: 0;
|
|
|
+ border: 2px dashed orange;
|
|
|
+ box-shadow: 0 0 5px rgba(73, 177, 249, 0.5);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -716,5 +859,13 @@ export default {
|
|
|
}
|
|
|
.edb-select-popover {
|
|
|
width: 300px !important;
|
|
|
+ .edb-item {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ .edb-item-name {
|
|
|
+ max-width: 260px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|