Browse Source

在线excel的bug

hbchen 1 year ago
parent
commit
5d43670a39

+ 4 - 1
src/views/datasheet_manage/addSheet.vue

@@ -98,7 +98,8 @@ export default {
   methods: {
 
     backHandle() {
-      window.close();
+      // window.close();
+      this.$router.back()
     },
 
     /* 获取分类 */
@@ -113,6 +114,8 @@ export default {
     /* 获取表格详情 */
     async getDetail() {
       if(!this.sheetId){
+        // 初始化数据
+        this.option={data:[{}]}
         this.sheetInit=true
         return
       }

+ 3 - 5
src/views/datasheet_manage/common/option.js

@@ -21,13 +21,11 @@ export function initSheet(container,options={},sheetInfo={},limit,callbackItems)
       postil:  false, //'批注'
 		},
     cellRightClickConfig: {
-      copy:!limit.disabled,
-      copyAs:!limit.disabled,
       chart: false, // 图表生成
       image: false, // 插入图片
       link: false, // 插入链接
     },
-    allowCopy:!limit.disabled,//没效果
+    // allowCopy:false,//没效果
     hook: {
       cellEditBefore:(range)=>{
         if(limit.disabled){
@@ -75,9 +73,9 @@ export function initSheet(container,options={},sheetInfo={},limit,callbackItems)
     },
     ...options,
   }
-
+  
   luckysheet.create(configOpt)
-
+  
 }
 
 /* 保存表格关联截图 手动选区截图再清空选区 */

+ 4 - 7
src/views/datasheet_manage/components/SheetExcel.vue

@@ -16,7 +16,7 @@ export default {
       default: ()=>{}
     },
     limit: {
-      type: Boolean,
+      type: Object,
       default: ()=>{
         return {disabled:false}
       }
@@ -36,6 +36,7 @@ export default {
     copyDisable(e){
       // 变向的禁止复制
       // console.log(e.target.value && e.target.value.indexOf('lucksheet'));
+      if(!this.limit.disabled) return
       if(e.target.value && e.target.value.indexOf('lucksheet')){
         luckysheet.enterEditMode();
         // luckysheet.exitEditMode();
@@ -51,14 +52,10 @@ export default {
   },
   mounted() {
     this.init();
-    if(this.limit.disabled){
-      document.addEventListener('copy',this.copyDisable)
-    }
+    document.addEventListener('copy',this.copyDisable)
   },
   beforeDestroy(){
-    if(this.limit.disabled){
-      document.removeEventListener('copy',this.copyDisable)
-    }
+    document.removeEventListener('copy',this.copyDisable)
   }
 }
 </script>

+ 5 - 5
src/views/datasheet_manage/sheetList.vue

@@ -492,12 +492,12 @@ export default {
         3: "/addMixedSheet",
       };
 
-      if(type === 1) {
-        const { href } = this.$router.resolve({ path: path[type] });
-        window.open(href, "_blank");
-      }else {
+      // if(type === 1) {
+      //   const { href } = this.$router.resolve({ path: path[type] });
+      //   window.open(href, "_blank");
+      // }else {
         this.$router.push({ path: path[type] })
-      }
+      // }
     },
 
     /* 获取表格分类 */