Browse Source

看板fix

jwyu 6 months ago
parent
commit
ec7b5156ba

+ 1 - 0
src/views/BI_manage/components/BoardContent.vue

@@ -82,6 +82,7 @@ export default {
     async drop(index) {
       if (this.draggedIndex === null) return
       // Swap the two items
+      const temp=this.value[this.draggedIndex]
       this.$set(this.value, this.draggedIndex, this.value[index]);
       this.$set(this.value, index, temp);
       this.draggedIndex = null;

+ 1 - 0
src/views/BI_manage/components/ChartBox.vue

@@ -7,6 +7,7 @@
           class="icon"
           src="~@/assets/img/icons/refresh_blue_new.png"
           alt=""
+          v-permission="permissionBtn.BIBoardPermission.BIBoard_refresh"
           @click="refreshHandle"
         />
         <slot name="drag"></slot>

+ 1 - 0
src/views/BI_manage/components/TableBox.vue

@@ -13,6 +13,7 @@
           class="icon"
           src="~@/assets/img/icons/refresh_blue_new.png"
           alt=""
+          v-permission="permissionBtn.BIBoardPermission.BIBoard_refresh"
           @click="handleRefresh"
         />
         <slot name="drag"></slot>