123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <template>
- <div class="app-process">
- <div class="app-process__left hidden-xs-only" @click="toLeft">
- <i class="el-icon-arrow-left"></i>
- </div>
- <div class="app-process__scroller">
- <div
- class="block"
- v-for="(item, index) in processList"
- :key="index"
- :class="{ active: item.active }"
- :data-index="index"
- @mousedown="
- (e) => {
- onTap(e, item);
- }
- "
- >
- <span>{{ item.label }}</span>
- <i
- class="el-icon-close"
- v-if="index > 0"
- :class="{ active: index > 0 }"
- @mousedown.stop="onDel(index)"
- ></i>
- </div>
- </div>
- <div class="app-process__right hidden-xs-only" @click="toRight">
- <i class="el-icon-arrow-right"></i>
- </div>
- <ul class="context-menu" v-show="menu.visible" :style="menu.style">
- <li @click="onClose('current')" v-if="isHit">关闭当前</li>
- <li @click="onClose('other')">关闭其他</li>
- <li @click="onClose('all')">关闭所有</li>
- </ul>
- </div>
- </template>
- <script>
- import { mapGetters, mapMutations } from "vuex";
- export default {
- name: "cl-process",
- data() {
- return {
- menu: {
- visible: false,
- current: {},
- style: {
- left: 0,
- top: 0
- }
- },
- isHit: false
- };
- },
- computed: {
- ...mapGetters(["processList"])
- },
- mounted() {
- this.$el.oncontextmenu = (e) => {
- e.returnValue = false;
- };
- document.body.addEventListener("click", () => {
- if (this.menu.visible) {
- this.menu.visible = false;
- }
- });
- },
- methods: {
- ...mapMutations(["ADD_PROCESS", "DEL_PROCESS", "SET_PROCESS"]),
- onTap(e, item) {
- this.isHit = item.active;
- if (e.button == 0) {
- this.$router.push(item.value);
- } else {
- this.menu = {
- current: item,
- visible: true,
- style: {
- left: e.layerX + "px",
- top: e.layerY + "px"
- }
- };
- }
- },
- onDel(index) {
- this.DEL_PROCESS(index);
- this.toPath();
- },
- onClose(cmd) {
- const { current } = this.menu;
- switch (cmd) {
- case "current":
- this.onDel(this.processList.findIndex((e) => e.value == current.value));
- break;
- case "other":
- this.SET_PROCESS(
- this.processList.filter((e) => e.value == current.value || e.value == "/")
- );
- break;
- case "all":
- this.SET_PROCESS(this.processList.filter((e) => e.value == "/"));
- break;
- }
- this.toPath();
- },
- toPath() {
- const active = this.processList.find((e) => e.active);
- if (!active) {
- const next = this.processList[this.processList.length - 1];
- this.$router.push(next ? next.value : "/");
- }
- },
- toLeft() {
- let scroller = this.$el.querySelector(".app-process__scroller");
- scroller.scrollTo(scroller.scrollLeft - 100, 0);
- },
- toRight() {
- let scroller = this.$el.querySelector(".app-process__scroller");
- scroller.scrollTo(scroller.scrollLeft + 100, 0);
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .app-process {
- display: flex;
- align-items: center;
- height: 30px;
- position: relative;
- &__left,
- &__right {
- background-color: #fff;
- height: 30px;
- line-height: 30px;
- padding: 0 2px;
- border-radius: 3px;
- cursor: pointer;
- &:hover {
- background-color: #eee;
- }
- }
- &__left {
- margin-right: 10px;
- }
- &__right {
- margin-left: 10px;
- }
- &__scroller {
- width: 100%;
- flex: 1;
- overflow-x: auto;
- overflow-y: hidden;
- white-space: nowrap;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- .block {
- display: inline-flex;
- align-items: center;
- border-radius: 3px;
- height: 30px;
- line-height: 30px;
- padding: 0 10px;
- background-color: #fff;
- font-size: 12px;
- margin-right: 10px;
- color: #909399;
- cursor: pointer;
- &:last-child {
- margin-right: 0;
- }
- i {
- font-size: 14px;
- width: 0;
- overflow: hidden;
- transition: all 0.3s;
- &:hover {
- color: #fff;
- background-color: $color-main;
- }
- }
- &:hover {
- .el-icon-close {
- width: auto;
- margin-left: 5px;
- }
- }
- &.active {
- span {
- color: $color-main;
- }
- i {
- width: auto;
- margin-left: 5px;
- }
- &:before {
- background-color: $color-main;
- }
- }
- }
- .context-menu {
- margin: 0;
- background: #fff;
- z-index: 100;
- position: absolute;
- list-style-type: none;
- padding: 5px 0;
- border-radius: 4px;
- font-size: 12px;
- font-weight: 400;
- color: #333;
- box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
- li {
- margin: 0;
- padding: 7px 16px;
- cursor: pointer;
- &:hover {
- background: #eee;
- }
- }
- }
- }
- </style>
|