|
@@ -0,0 +1,253 @@
|
|
|
+<template>
|
|
|
+ <div class="seat-com">
|
|
|
+ <template v-for="(item, index) in data">
|
|
|
+<!-- grid中间占位-->
|
|
|
+ <template v-if="(index + 4) % 8 === 0">
|
|
|
+ <div/>
|
|
|
+ </template>
|
|
|
+ <div class="item" :class="{'item-left': index % 2 === 0, 'item-right': index % 2 === 1, 'item-success': item.deptName}">
|
|
|
+ <el-popover placement="top" :width="400" popper-class="__el-popper-none seat-hover-popper" :teleported="false" :disabled="!item.deptName">
|
|
|
+ <template #reference>
|
|
|
+ <div class="item-content">
|
|
|
+ <div class="index">{{item.index}}</div>
|
|
|
+ <div class="dept-name" v-if="item.deptName">{{item.deptName}}</div>
|
|
|
+ <div class="seat-bg" :class="{'seat-bg_sign-error': type === 'sign' && item.status === '2'}"/>
|
|
|
+ <div class="obj-bg" :class="{
|
|
|
+ 'obj-bg_sign': type === 'sign',
|
|
|
+ 'obj-bg_sign-error': type === 'sign' && item.status === '2',
|
|
|
+ 'obj-bg_file': type === 'file',
|
|
|
+ }"/>
|
|
|
+ <template v-if="item.deptName">
|
|
|
+ <div class="status-bg" :class="{
|
|
|
+ 'status-bg_sign': type === 'sign',
|
|
|
+ 'status-bg_sign-success': type === 'sign' && item.status === '0',
|
|
|
+ 'status-bg_sign-error': type === 'sign' && item.status === '2',
|
|
|
+ 'status-bg_file': type === 'file',
|
|
|
+ 'status-bg_file-success': type === 'file' && item.status === '0',
|
|
|
+ }"/>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div class="seat-hover">
|
|
|
+ asdasd
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div class="line"/>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import {
|
|
|
+ defineComponent,
|
|
|
+ computed,
|
|
|
+ onMounted,
|
|
|
+ ref,
|
|
|
+ reactive,
|
|
|
+ watch,
|
|
|
+ getCurrentInstance,
|
|
|
+ ComponentInternalInstance,
|
|
|
+ toRefs,
|
|
|
+ nextTick
|
|
|
+} from 'vue'
|
|
|
+import {useStore} from 'vuex'
|
|
|
+import {useRouter, useRoute} from 'vue-router'
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: '',
|
|
|
+ components: {},
|
|
|
+ props: {
|
|
|
+ type: {
|
|
|
+ default: 'sign',
|
|
|
+ validator(val: string) {
|
|
|
+ return ['sign', 'file'].includes(val)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ default: () => []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setup(props, {emit}) {
|
|
|
+ const store = useStore();
|
|
|
+ const router = useRouter();
|
|
|
+ const route = useRoute();
|
|
|
+ const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
|
+ const state = reactive({})
|
|
|
+ return {
|
|
|
+ ...toRefs(state)
|
|
|
+ }
|
|
|
+ },
|
|
|
+})
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.seat-com {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: 99px 99px 99px 99px auto 99px 99px 99px 99px;
|
|
|
+ column-gap: 9px;
|
|
|
+ row-gap: calc((100% - 88px * 6) / 5);
|
|
|
+ grid-template-rows: repeat(6, 88px);
|
|
|
+ position: relative;
|
|
|
+ padding: 15px 0 44px 0;
|
|
|
+ .line {
|
|
|
+ position: absolute;
|
|
|
+ left: calc((100% - 2px) / 2);
|
|
|
+ width: 0;
|
|
|
+ height: 100%;
|
|
|
+ border-left: 2px dashed #0085F7;
|
|
|
+ border-spacing: 20px;
|
|
|
+ }
|
|
|
+ .item {
|
|
|
+ position: relative;
|
|
|
+ opacity: 0.5;
|
|
|
+ .item-content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ .seat-bg, .obj-bg, .status-bg {
|
|
|
+ position: absolute;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ .seat-bg {
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+ .obj-bg {
|
|
|
+ z-index: 2;
|
|
|
+ width: 51px;
|
|
|
+ height: 35px;
|
|
|
+ background-image: url("@/assets/images/business/seat-obj_sign.png");
|
|
|
+ &.obj-bg_sign {
|
|
|
+ top: 39px;
|
|
|
+ }
|
|
|
+ &.obj-bg_sign-error {
|
|
|
+ background-image: url("@/assets/images/business/seat-obj_sign-error.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .status-bg {
|
|
|
+ z-index: 3;
|
|
|
+ width: 40px;
|
|
|
+ height: 33px;
|
|
|
+ &.status-bg_sign {
|
|
|
+ top: 33px;
|
|
|
+ background-image: url("@/assets/images/business/seat-status_sign.png");
|
|
|
+ }
|
|
|
+ &.status-bg_sign-success {
|
|
|
+ background-image: url("@/assets/images/business/seat-status_sign-success.png");
|
|
|
+ }
|
|
|
+ &.status-bg_sign-error {
|
|
|
+ background-image: url("@/assets/images/business/seat-status_sign-error.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .index {
|
|
|
+ z-index: 4;
|
|
|
+ position: absolute;
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PangMenZhengDao;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #2EB8FF;
|
|
|
+ width: 28px;
|
|
|
+ height: 28px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .dept-name {
|
|
|
+ z-index: 4;
|
|
|
+ position: absolute;
|
|
|
+ writing-mode: vertical-rl;
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PangMenZhengDao;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #2EB8FF;
|
|
|
+ width: 23px;
|
|
|
+ height: 60px;
|
|
|
+ top: 28px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ transform: scaleY(0.85);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $seatHoverPopper: 61px;
|
|
|
+ :deep(.seat-hover-popper) {
|
|
|
+ width: 222px !important;
|
|
|
+ height: 168px !important;
|
|
|
+ background-image: url("@/assets/images/business/seat-hover-bg.png") !important;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ inset: unset !important;
|
|
|
+ bottom: 45px !important;
|
|
|
+ .seat-hover {
|
|
|
+ position: absolute;
|
|
|
+ top: 15px;
|
|
|
+ left: 34px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.item-success {
|
|
|
+ opacity: 1;
|
|
|
+ .item-content {
|
|
|
+ &:hover {
|
|
|
+ opacity: 0.75;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $objBgLeft: 39px;
|
|
|
+ $statusBgLeft: 44px;
|
|
|
+ $deptNameLeft: 4px;
|
|
|
+ &.item-left {
|
|
|
+ .seat-bg {
|
|
|
+ background-image: url("@/assets/images/business/seat-left.png");
|
|
|
+ &.seat-bg_sign-error {
|
|
|
+ background-image: url("@/assets/images/business/seat-left_error.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .obj-bg_sign {
|
|
|
+ left: $objBgLeft;
|
|
|
+ }
|
|
|
+ .status-bg {
|
|
|
+ left: $statusBgLeft;
|
|
|
+ }
|
|
|
+ .index {
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+ .dept-name {
|
|
|
+ left: $deptNameLeft;
|
|
|
+ }
|
|
|
+ :deep(.seat-hover-popper) {
|
|
|
+ left: $seatHoverPopper !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.item-right {
|
|
|
+ .seat-bg {
|
|
|
+ background-image: url("@/assets/images/business/seat-right.png");
|
|
|
+ &.seat-bg_sign-error {
|
|
|
+ background-image: url("@/assets/images/business/seat-right_error.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .obj-bg_sign {
|
|
|
+ right: $objBgLeft;
|
|
|
+ }
|
|
|
+ .status-bg {
|
|
|
+ right: $statusBgLeft;
|
|
|
+ }
|
|
|
+ .index {
|
|
|
+ right: 0;
|
|
|
+ }
|
|
|
+ .dept-name {
|
|
|
+ right: $deptNameLeft;
|
|
|
+ }
|
|
|
+ :deep(.seat-hover-popper) {
|
|
|
+ right: calc(0px - #{$seatHoverPopper} - 94px) !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|