loulijun2021
2022-08-30 df86d5bd8bbbe4b2d6ec8bdffa681848d92576ca
src/layout/components/TagsView/index.vue
@@ -22,6 +22,23 @@
      <li @click="closeOthersTags">关闭其他</li>
      <li @click="closeAllTags(selectedTag)">关闭所有</li>
    </ul>
    <el-dialog
      title="提示"
      :visible.sync="dialogVisible"
      width="500px"
      :close-on-click-modal="false"
    >
      <div>
        现页签打开超过10个,请关闭其它标签
      </div>
      <span slot="footer" class="dialog-footer">
        <div class="footerButton">
          <el-button @click="dialogVisibleCancel">返回</el-button>
        </div>
      </span>
    </el-dialog>
  </div>
</template>
@@ -39,11 +56,17 @@
      top: 0,
      left: 0,
      selectedTag: {},
      affixTags: []
      affixTags: [],
      dialogVisible: false
    }
  },
  computed: {
    visitedViews() {
      // 暂时取消十个标签页限制提示
      // if (this.$store.state.tagsView.visitedViews.length > 10) {
      //   // eslint-disable-next-line vue/no-side-effects-in-computed-properties
      //   this.dialogVisible = true
      // }
      return this.$store.state.tagsView.visitedViews
    },
    routes() {
@@ -95,16 +118,22 @@
        this.$store.state.tagsView.visitedViews = oldViews
      }
    },
    // 对话框返回
    dialogVisibleCancel() {
      this.dialogVisible = false
    },
    isActive(route) {
      if (this.$route.path === '/scgl/sckbg') {
        const time = setInterval(() => {
          this.$nextTick(() => {
            $("input[name='produceCode']")[0].focus()
            $("input[name='WXproduceCode']")[0].focus()
            clearInterval(time)
          })
        })
      }
      // if (this.$route.path === '/scgl/sckbg') {
      //   const time = setInterval(() => {
      //     this.$nextTick(() => {
      //       $("input[name='produceCode']")[0].focus()
      //       $("input[name='WXproduceCode']")[0].focus()
      //       clearInterval(time)
      //     })
      //   })
      // }
      return route.path === this.$route.path
    },
    isAffix(tag) {