|
@@ -0,0 +1,218 @@
|
|
|
+/* 表格可拖拽行列 */
|
|
|
+import * as sheetInterface from "@/api/modules/sheetApi.js";
|
|
|
+const minThresholdColWid = 20,
|
|
|
+ minThresholdColH = 30,
|
|
|
+ moveToDistance=5;
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ columnsWArr: [],
|
|
|
+ rowsHArr: [],
|
|
|
+ dragging: false,
|
|
|
+ dragState: {},
|
|
|
+ dragStateHeight: {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ computed: {
|
|
|
+ isCanDragSheetWid() {
|
|
|
+ let authRoutes = ['/ppteditor','/ppteneditor'];
|
|
|
+ return authRoutes.includes(this.$route.path) && this.item.uid
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ handleMouseMove: _.throttle(function(e,rIndex,cIndex) {
|
|
|
+
|
|
|
+ // if(rIndex!==0 && cIndex!==0) return
|
|
|
+
|
|
|
+ let target = e.target
|
|
|
+ if (!this.dragging) {
|
|
|
+ let rect = target.getBoundingClientRect();
|
|
|
+
|
|
|
+ if (rect.width > 10 && rect.right - e.pageX < moveToDistance /* && rIndex===0 */) {
|
|
|
+ e.target.style.cursor = 'col-resize'
|
|
|
+ }else if (rect.height > 10 && rect.bottom - e.pageY < moveToDistance /* && cIndex===0 */) {
|
|
|
+ e.target.style.cursor = 'row-resize'
|
|
|
+ } else if (!this.dragging) {
|
|
|
+ e.target.style.cursor = ''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },20),
|
|
|
+
|
|
|
+
|
|
|
+ handleMouseDown: _.throttle(function(e,rIndex,cIndex) {
|
|
|
+
|
|
|
+ document.onselectstart = function() { return false; };//解决拖动会选中文字的问题
|
|
|
+
|
|
|
+ if(e.button!=0){
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ let rect = e.target.getBoundingClientRect();
|
|
|
+
|
|
|
+ if (rect.width > 10 && rect.right - e.pageX < moveToDistance /* && rIndex===0 */) {
|
|
|
+ // 开始拖拽
|
|
|
+ // 当前拖拽的列所在的表格
|
|
|
+ // 当前所在列(单元格)
|
|
|
+ let thEL = e.target
|
|
|
+ this.dragging = true
|
|
|
+
|
|
|
+ thEL.classList.add('noclick')
|
|
|
+ this.dragState = {
|
|
|
+ startMouseLeft: e.clientX, // 鼠标开始的地方
|
|
|
+ columnWidth: rect.width, // th开始拖拽的宽度
|
|
|
+ }
|
|
|
+
|
|
|
+ document.onselectstart = function () {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ document.ondragstart = function () {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ const endResize = (event) => {
|
|
|
+ if(this.dragging){
|
|
|
+ // 拖拽完毕
|
|
|
+ const { startMouseLeft, columnWidth } = this.dragState;
|
|
|
+ const columnWidthDiff = event.clientX - startMouseLeft;
|
|
|
+ let newWid = Math.max(minThresholdColWid,columnWidthDiff + columnWidth);
|
|
|
+ this.$set(this.columnsWArr,cIndex,newWid)
|
|
|
+
|
|
|
+ e.target.style.width = this.columnsWArr[cIndex]
|
|
|
+
|
|
|
+ let widthTotal=0
|
|
|
+ this.columnsWArr.forEach((item)=>{
|
|
|
+ widthTotal+=item
|
|
|
+ })
|
|
|
+ // console.log(widthTotal)
|
|
|
+ //多出来的宽度
|
|
|
+ let otherWidth=this.$refs.tableRef.offsetWidth-widthTotal;
|
|
|
+
|
|
|
+ this.columnsWArr.forEach((item,colIndex)=>{
|
|
|
+ if(colIndex!=cIndex){
|
|
|
+ // this.columnsWArr[colIndex]= Number(parseFloat(item + otherWidth/this.columnsWArr.length-1).toFixed(2))
|
|
|
+ let colWid= Number(parseFloat(item + otherWidth/this.columnsWArr.length-1).toFixed(2))
|
|
|
+ this.$set(this.columnsWArr,colIndex,colWid)
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.initTableCellsWid('change')
|
|
|
+ },500)
|
|
|
+
|
|
|
+ // event.target.style.cursor = ''
|
|
|
+
|
|
|
+ this.dragging = false
|
|
|
+ this.dragState = {}
|
|
|
+ }
|
|
|
+ document.removeEventListener('mouseup', endResize);
|
|
|
+ document.onselectstart = null
|
|
|
+ document.ondragstart = null
|
|
|
+ thEL.classList.remove('noclick')
|
|
|
+ }
|
|
|
+
|
|
|
+ document.addEventListener('mouseup', endResize);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (rect.height > 10 && rect.bottom - e.pageY < moveToDistance /* && cIndex===0 */) {
|
|
|
+ let thEL = e.target
|
|
|
+ this.dragging = true
|
|
|
+
|
|
|
+ thEL.classList.add('noclick')
|
|
|
+ this.dragStateHeight = {
|
|
|
+ startMouseTop: e.clientY,
|
|
|
+ columnHeight: rect.height,
|
|
|
+ }
|
|
|
+ document.onselectstart = function () {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ document.ondragstart = function () {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ const endResize = (event) => {
|
|
|
+ if(this.dragging){
|
|
|
+ // 拖拽完毕
|
|
|
+ const { startMouseTop, columnHeight } = this.dragStateHeight;
|
|
|
+ const columnHeightDiff = event.clientY - startMouseTop;
|
|
|
+ let newH = Math.max(minThresholdColH,columnHeightDiff + columnHeight);
|
|
|
+ this.$set(this.rowsHArr,rIndex,newH)
|
|
|
+
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.initTableCellsWid('change')
|
|
|
+ },500)
|
|
|
+
|
|
|
+ event.target.style.cursor = ''
|
|
|
+ this.dragging = false
|
|
|
+ this.dragStateHeight = {}
|
|
|
+ }
|
|
|
+ document.removeEventListener('mouseup', endResize);
|
|
|
+ document.onselectstart = null
|
|
|
+ document.ondragstart = null
|
|
|
+ setTimeout(function () {
|
|
|
+ thEL.classList.remove('noclick')
|
|
|
+ }, 0)
|
|
|
+ }
|
|
|
+ document.addEventListener('mouseup', endResize);
|
|
|
+ }
|
|
|
+ },20),
|
|
|
+
|
|
|
+
|
|
|
+ initTableCellsWid(type='init') {
|
|
|
+ if(type=='init'){
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ if(this.sheetSceneConfig && this.sheetSceneConfig.WidthList && this.sheetSceneConfig.HeightList) {
|
|
|
+ this.columnsWArr = this.sheetSceneConfig.WidthList.split(',').map(_ =>Number(_));
|
|
|
+ this.rowsHArr = this.sheetSceneConfig.HeightList.split(',').map(_ =>Number(_));
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ const table = this.$refs.tableRef;
|
|
|
+ if (table&&table.rows&&table.rows.length) {
|
|
|
+ const rows=table.rows;
|
|
|
+ const cells = table.rows[0].cells;
|
|
|
+ let widthArr= Array.from(cells).map(cell => cell.offsetWidth);
|
|
|
+ console.log(widthArr)
|
|
|
+
|
|
|
+ let heightArr=Array.from(rows).map(row => row.offsetHeight);
|
|
|
+ console.log(heightArr)
|
|
|
+
|
|
|
+ this.columnsWArr=widthArr
|
|
|
+ this.rowsHArr=heightArr
|
|
|
+
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else if(type === 'change') {
|
|
|
+ this.changeTableCellWidSave();
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ getSize(index,type) {
|
|
|
+ if(type==='width'){
|
|
|
+ return this.columnsWArr[index]?`${this.columnsWArr[index]}px`:''
|
|
|
+ }else{
|
|
|
+ return this.rowsHArr[index]?`${this.rowsHArr[index]}px`:'20px'
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 保存行高配置 */
|
|
|
+ async changeTableCellWidSave(){
|
|
|
+ if((!this.$route.query.id) || !this.item.uid) return
|
|
|
+
|
|
|
+ let ReferencedId = Number(this.$route.query.id || '')
|
|
|
+ let FromScene = this.$route.path === '/ppteditor' ? 4 : 5;
|
|
|
+ let parmas = {
|
|
|
+ UniqueCode: this.item.sheetId,
|
|
|
+ ReferencedId,
|
|
|
+ FromScene,
|
|
|
+ Uuid: this.item.uid,
|
|
|
+ WidthList: this.columnsWArr.join(','),
|
|
|
+ HeightList: this.rowsHArr.join(',')
|
|
|
+ }
|
|
|
+ // console.log(parmas)
|
|
|
+ await sheetInterface.sheetUseSceneSaveWid(parmas);
|
|
|
+ },
|
|
|
+ }
|
|
|
+}
|