Newer
Older
KaiFengPC / src / views / sponeScreen / projectHM / gongchenkanbani_comp / qipao.vue
<template>
  <Transition name="slide-fade">
    <!-- <div class="pmpSitNewDialogw"  v-if="allDate.constructionPurpose"> -->
    <div class="pmpSitNewDialogw">
      <div class="title">
        <span class="text">{{ allDate.projectName }}</span>
        <el-icon class="icon_clas" size="22" @click="dclosed">
          <Close />
        </el-icon>
      </div>
      <div class="content">
        <div class="left_content">
          <div>
            <div class="timage">
              规划条件
              <div class="text_x" :title="BoxList.planCondition">{{ BoxList.planCondition }}</div>
            </div>
          </div>
          <div>
            <div class="timage">
              项目概况
              <div class="text_x" :title="BoxList.projectOverview">{{ BoxList.projectOverview }}</div>
            </div>
          </div>
          <div>
            <el-button @click="qitxiangq" class="timage qtxq">其他详情 </el-button>
          </div>
        </div>
        <div class="right_content">
          <el-carousel trigger="click" height="247px">
            <el-carousel-item
              v-if="allImages?.postConstructionFileList?.length > 0"
              v-for="item in allImages?.postConstructionFileList"
              :key="item"
            >
              <el-imag
                class="img_age"
                :zoom-rate="1.2"
                :max-scale="7"
                :preview-src-list="srcList"
                :min-scale="0.2"
                :src="item?.url"
                alt=""
                :title="allDate.projectOverview"
              />
            </el-carousel-item>
            <el-empty :image-size="30" v-else />
          </el-carousel>

          <div class="text_x image_e" style="height: auto">施工、完成照片</div>
        </div>
      </div>
    </div>
  </Transition>
  <el-dialog class="pmpSitNewDialog " v-model="daLigoShow" :title="allDate.projectName" :align-center="true" width="47.6%" draggable>
    <el-tabs v-model="editableTabsValue" :stretch="true" @tab-click="TabsChange">
      <el-tab-pane v-for="item in editableTabs" :key="item.name" :label="item.title" :name="item.name"> </el-tab-pane>
      <keep-alive>
        <component :is="componentId"></component>
      </keep-alive>
    </el-tabs>
  </el-dialog>
</template>
<script setup name="gongChengPingJia">
import { ref, reactive, toRefs, onMounted } from 'vue';

import xianchangtup from '@/assets/images/Sponge_screen/xianchangtup.png';
import XiangXiXinXi from './XiangXiXinXi.vue';
import jianseduibi from './jianseduibi.vue';
import xmsgt from './xmsgt.vue';
import bus from '@/bus';
import { projectInfoNewById } from '@/api/project/projectInformationNew';
import { selectProjectImageList } from '@/api/sponeScreen/gcpjApi';

const emnits = defineEmits();
const allDate = ref({});
const BoxList = ref([]);
const daLigoShow = ref(false);
const editableTabsValue = ref('xxxx');
const componentId = ref(XiangXiXinXi);
const srcList = ref([]);
const editableTabs = ref([
  { name: 'xxxx', title: '详细信息' },
  { name: 'jsdb', title: '项目成果展示' },
  { name: 'xmsgt', title: '项目施工图' },
]);
const props = defineProps({
  fullScreen: {
    type: Boolean,
    default: false,
  },
  allDateList: {
    type: Object,
  },
});
function dclosed() {
  editableTabsValue.value = 'xxxx';
  emnits('closed', false);
}
function qitxiangq() {
  daLigoShow.value = true;
  console.log(allDate.value.id);
  // debugger;
  projectInfoNew(allDate.value.id);
}
async function projectInfoNew(p) {
  let { data } = await projectInfoNewById(p);
  bus.emit('getProjectDate', data);
}
function TabsChange({ props: { name } }) {
  projectInfoNew(allDate.value.id);
  switch (name) {
    case 'xxxx':
      componentId.value = XiangXiXinXi;
      break;
    case 'jsdb':
      componentId.value = jianseduibi;
      break;
    case 'xmsgt':
      componentId.value = xmsgt;
      break;
  }
}
const allImages = ref({});
async function selectProjectImage(p) {
  let { data } = await selectProjectImageList(p);
  // console.log(data, 'datadatadata');
  BoxList.value = data[0];
  allImages.value = data[0];
  debugger
  srcList.value = [data[0]?.postConstructionFileList[0]?.url];
}

onMounted(() => {
  if (props?.allDateList) {
    allDate.value = props.allDateList;
    selectProjectImage({ projectNo: props.allDateList.projectNo });
  }

  bus.on('mapClick', row => {
    allDate.value = row;
    setTimeout(() => {
      selectProjectImage({ projectNo: row.projectNo });
      if (!allDate.value.constructionPurpose) {
        daLigoShow.value = true;
        projectInfoNew(allDate.value.id);
      }
    }, 200);
  });
});
</script>
<style lang="scss">
.pmpSitNewDialogw {
  width: 550px;
  height: 330px;
  position: absolute;
  top: 10px;
  left: 485px;
  z-index: 1012;
  background: linear-gradient(0deg, #005cba 0%, #000f26 100%);
  opacity: 9;
  border-radius: 14px;

  .title {
    width: 100%;
    height: 40px;
    background: url('@/assets/images/Sponge_screen/qipaotankuan.png') no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    border-radius: 8px;
    align-items: center;

    .icon_clas {
      position: absolute;
      right: 6px;
      top: 10px;
    }

    .text {
      font-size: 17px;
      font-weight: bold;
      color: #fff;
      display: inline-block;
      margin-left: 20px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      width: 93%;
    }

    .image {
      text-align: center;
    }
  }

  .content {
    padding: 10px;
    display: flex;
    display: flex;

    div {
      flex: 1;
    }

    .left_content {
      // display: flex;
      // flex-direction: column;
      // height: 330px;
      > div {
        margin-bottom: 15px;

        &:last-of-type {
          margin-bottom: 0;
        }
      }
    }

    .timage {
      background: linear-gradient(90deg, #005cba 0%, rgba(0, 92, 186, 0) 100%);
      height: 96px;
      color: #fff;
      font-size: 17px;
      font-weight: bold;
      padding: 0 10px;
    }

    .qtxq {
      height: 36px;
    }

    .text_x {
      font-family: Source Han Sans CN;
      font-weight: 400;
      font-size: 14px;
      color: #ffffff;
      overflow-y: scroll;
      height: 70px;
      cursor: pointer;
    }

    .image_e {
      text-align: center;
    }
  }
}
.pmpSitNewDialog{ 
  height: 680px;
  .el-dialog__header {
    width: 100%;
    height: 40px;
    background: url('@/assets/images/Sponge_screen/qipaotankuan.png') no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    border-radius: 8px;
    align-items: center;

    .icon_clas {
      position: absolute;
      right: 6px;
      top: 10px;
    }

    .el-dialog__title {
      color: #fff;
      margin-left: 110px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      width: 93%;
    }
  }
}
// ::-webkit-scrollbar {
//   width: 0;
//   //  height: 10px;
// }
.slide-fade-enter-active {
  transition: all 0.3s ease-out;
}

.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
  transform: translateX(20px);
  opacity: 0;
}

.img_age {
  width: 100%;
  height: 247px;
}
</style>