123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597 |
- <template>
- <div class="pro_details_video">
- <head-component :headinfo=headinfo ref="headinfoRef"></head-component>
- <div class="page-content">
- <div class="page-img-box">
- <div class="top-content">
- <img class="top-content-left" src="@/assets/images/environment/keys-search-h.png">
- <div class="top-content-right">
- <div class="right-top">
- <p class="title">{{ entity.name }}</p>
- <div class="right-top-icon">
- <collectionComponent ref="collectionRef" :collection="collection_data"></collectionComponent>
- </div>
- </div>
- <div class="info-box">
- <p class="title" > 所属行业</p>
- <p class="answer" >{{entity.industryname}}</p>
- </div>
- <div class="info-box">
- <p class="title"> 职业兴趣类代码</p>
- <p class="answer" >{{entity.interestcode}}</p>
- </div>
- </div>
- </div>
- <div class="bottom-content">
- <div class="tab-box">
- <div :class="[onePage?'item-box-active':'item-box']" @click="showPage(1)">
- 职业概述
- </div>
- <div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(2)">
- 工作内容
- </div>
- <div :class="[threePage?'item-box-active':'item-box']" @click="showPage(3)">
- 职业前景
- </div>
- <div :class="[fourPage?'item-box-active':'item-box']" @click="showPage(4)">
- 本科专业
- </div>
- <div :class="[fivePage?'item-box-active':'item-box']" @click="showPage(5)">
- 专科专业
- </div>
- <div :class="[sixPage?'item-box-active':'item-box']" @click="showPage(6)">
- 职业视频
- </div>
- </div>
- <div class="one-page" v-show="onePage">
- <p class="title">职业概述</p>
- <div class="info" v-html="entity.definition"></div>
- </div>
- <div class="one-page" v-show="twoPage">
- <p class="title">工作内容</p>
- <div class="info" v-html="entity.normalwork"></div>
- </div>
- <div class="one-page" v-show="threePage">
- <p class="title">职业前景</p>
- <div class="info" v-html="entity.prospects"></div>
- </div>
- <div class="one-page" v-show="fourPage">
- <p class="title">本科专业</p>
- <div class="info" v-html="entity.employment">
- </div>
- </div>
- <div class="one-page" v-show="fivePage">
- <p class="title">专科专业</p>
- <div class="major">
- <div class="info-item" v-for="(item,index) in zk_list" @click="jumpZY(item)">
- {{ item.name }}
- </div>
- </div>
- </div>
- <div class="one-page" v-show="sixPage">
- <p class="title">职业视频</p>
- <div ref="videoContainer" class="video-container" v-if="entity.path">
- <video ref="videoPlayer" id="playerId" class="video-js vjs-default-skin" controls preload="auto"
- :data-setup="{}">
- <!-- 可以在这里插入source标签以指定你的视频源 -->
- <source :src="entity.path" type="video/mp4">
- </video>
- </div>
- </div>
- </div>
- </div>
- </div>
- <el-dialog
- v-model="sixPage"
- @before-close="dialogBeforeClose"
- destroy-on-close
- title="专业视频"
- width="1832px"
- height="915px"
- center
- align-center
- v-if="entity.path"
- >
- <div class="video-content" >
- <video ref="videoPlayer" video preload="auto" autoplay muted controls width="1798" height="900">
- <source :src="entity.path" type="video/mp4">
- </video>
- </div>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import videojs from 'video.js';
- import 'video.js/dist/video-js.css';
- import collectionComponent from '@/views/xjc-integratedmachine/components/collection_component.vue'
- import { provide, ref } from 'vue';
- import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
- import Drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
- import {occupationDetail} from "@/api/xjc-integratedmachine/environment/occupation.js";
- const {proxy} = getCurrentInstance()
- const {educationlevel} = proxy.useDict('educationlevel')
- const router = useRouter()
- const route = useRoute()
- const tabIndex = ref("zyjd")
- const headinfo = ref({})
- const onePage = ref(true)
- const twoPage = ref(false)
- const threePage = ref(false)
- const fourPage = ref(false)
- const fivePage = ref(false)
- const sixPage = ref(false)
- function setHeadinfo(){
- headinfo.value = {
- title: '职业详情',
- user: {
- avatar: '头像路径',
- nickName: '张三'
- },
- backUrl : '/xjc-integratedmachine/environment/query_universitydb_conditions',
- homeUrl:'/xjc-integratedmachine/environment/index',
- contrast:true,
- contrastType:3
- }
- }
- onMounted(() => {
- setHeadinfo()
- })
- const param = route.query
- const entity = ref({})
- const kaishe_list = ref([])
- const pinggu_list = ref([])
- const similar_list = ref([])
- const collectionRef = ref(null)
- const collection_data = ref({})
- const headinfoRef = ref(null);
- function setCollection_data(){
- collection_data.value = {
- contentType: 3,
- contentId: param.id,
- contentVal: entity.value,
- source:'occ_details_video'
- }
- }
- const bk_list = ref([])
- const zk_list = ref([])
- function detail() {
- console.log("param.id",param.id)
- occupationDetail({
- id: param.id
- }).then(resp => {
- resp.entity.bk_list = resp.bk_list
- resp.entity.compare = resp.compare
- entity.value = resp.entity
- console.log("entity.value",entity.value)
- bk_list.value = entity.value.bk_list
- zk_list.value = resp.zk_list
- setTimeout(() => {
- setCollection_data();
- // collectionRef.value.getSource('occ_details_video');
- // collectionRef.value.isContrast(entity.value);
- }, 500);
- })
- }
- const showPage = (val) => {
- if (val === 1) {
- onePage.value = true;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- sixPage.value = false;
- } else if (val === 2) {
- onePage.value = false;
- twoPage.value = true;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- sixPage.value = false;
- } else if (val === 3) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = true;
- fourPage.value = false;
- fivePage.value = false;
- sixPage.value = false;
- } else if (val === 4) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = true;
- fivePage.value = false;
- sixPage.value = false;
- } else if (val === 5) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = true;
- sixPage.value = false;
- } else if (val === 6) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- sixPage.value = true;
- }
- }
- detail()
- function dialogBeforeClose() {
- onePage.value = true;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- sixPage.value = false
- senvenPage.value = false
- eightPage.value = false;
- }
- function jumpZY(item){
- router.push({
- path : '/xjc-integratedmachine/environment/pro_details_video',
- query :{
- id : item.id
- }
- })
- }
- const parentMethod = () => {
- console.log('父组件方法被调用');
- if (headinfoRef.value) {
- headinfoRef.value.getCompareSizeData(); // 调用子组件的 sayHello 函数
- }
- };
- provide('parentMethod', parentMethod);
- </script>
- <style scoped lang="scss">
- p, div {
- margin: 0;
- padding: 0;
- }
- .pro_details_video {
- background: url('@/assets/images/environment/university-detail.png') no-repeat;
- background-size: 1920px 1080px;
- z-index: 10;
- width: 100%;
- height: 1080px;
- .page-content {
- width: 100%;
- position: absolute;
- top: 100px;
- bottom: 0;
- display: flex;
- justify-content: center;
- }
- .page-img-box {
- width: 1832px;
- height: 922px;
- margin-top: 13px;
- background: rgba(255, 255, 255, 0.4);
- border-radius: 35px 35px 35px 35px;
- display: flex;
- flex-direction: column;
- .top-content {
- width: 1832px;
- display: flex;
- justify-content: space-between;
- .top-content-left{
- width: 764px;
- height: 500px;
- background: #D9D9D9;
- border-radius: 5px 5px 5px 5px;
- margin-top:15px;
- margin-left: 34px;
- }
- .top-content-right {
- margin-left: 45px;
- width: 1782px;
- margin-left: 45px;
- //border: 1px solid;
- .title {
- font-weight: bold;
- font-size: 36px;
- color: #1E410E;
- line-height: 24px;
- }
- .school-level-box {
- display: flex;
- justify-content: left;
- .school-level {
- margin-right: 20px;
- width: 174px;
- height: 54px;
- background: #B3FC7C;
- border-radius: 5px 5px 5px 5px;
- font-weight: bold;
- font-size: 20px;
- color: #000000;
- line-height: 54px;
- text-align: center;
- }
- }
- .text-box {
- width: 1124px;
- p {
- margin-right: 20px;
- }
- }
- .right-top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .right-top-icon {
- width: 200px;
- height: 68px;
- display: flex;
- justify-content: space-between;
- margin-top: 24px;
- .item-img {
- display: flex;
- flex-direction: column;
- align-items: center;
- p {
- font-weight: 400;
- font-size: 20px;
- color: #515F6A;
- }
- img {
- width: 36px;
- height: 36px;
- }
- }
- }
- }
- }
- .info-box{
- //border: 1px solid;
- //margin-left: 33px;
- .title {
- height: 40px;
- border-left: 8px #8CE349 solid;
- margin-top: 33px;
- font-weight: 400;
- font-size: 28px;
- color: #333333;
- line-height: 40px;
- padding-left: 11px;
- }
- .answer{
- font-weight: 400;
- font-size: 20px;
- color: #333333;
- margin-top: 20px;
- margin-left: 20px;
- }
- }
- }
- }
- .bottom-content {
- margin-top: 10px;
- height: 500px;
- .tab-box {
- display: flex;
- padding-right: 279px;
- img {
- width: 36px;
- height: 36px;
- margin-right: 12px;
- }
- }
- .item-box {
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 202px;
- height: 65px;
- box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.09);
- border-radius: 5px 5px 0px 0px;
- font-weight: 400;
- font-size: 32px;
- color: #979797;
- }
- .item-box-active {
- text-align: center;
- color: #000000;
- background: #FFFFFF;
- font-weight: bold;
- font-size: 32px;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 202px;
- height: 65px;
- background: #FFFFFF;
- box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.09);
- border-radius: 5px 5px 0px 0px;
- }
- }
- //.editor-content div,
- //.editor-content span,
- //.editor-content p,
- //.editor-content h1,
- //.editor-content h2,
- //.editor-content h3,
- //.editor-content h4,
- //.editor-content h5,
- //.editor-content h6 {
- // font-size: 26px !important;
- // line-height: 37px !important;
- //}
- .editor-content div,
- .editor-content span,
- .editor-content p {
- text-indent: 2em !important;
- text-align: left !important;
- }
- }
- .one-page {
- width: 1832px;
- height: 341px;
- background: #FFFFFF;
- border-radius: 0px 0px 35px 35px;
- border: 1px solid #FFFFFF;
- overflow: auto;
- line-height: 32px;
- padding-top: 10px;
- .title {
- height: 40px;
- border-left: 8px #8CE349 solid;
- margin-left: 33px;
- font-weight: 400;
- font-size: 28px;
- color: #333333;
- line-height: 40px;
- padding-left: 11px;
- }
- .info {
- text-indent: 2em;
- font-weight: 400;
- font-size: 28px;
- color: #333333;
- line-height: 40px;
- }
- .major{
- margin-top: 19px;
- font-weight: 400;
- font-size: 20px;
- color: #333333;
- display: flex;
- //justify-content: space-around;
- flex-wrap: wrap;
- .info-item{
- width: 244px;
- height: 80px;
- margin-left: 10px;
- background: #FFFFFF;
- border-radius: 5px 5px 5px 5px;
- border: 1px solid #A2F57F;
- font-weight: 400;
- font-size: 30px;
- color: #000000;
- line-height: 80px;
- text-align: center;
- margin-top: 14px;
- .info-text{
- margin-top: 19px;
- font-weight: 400;
- font-size: 20px;
- color: #333333;
- }
- }
- }
- .select-div {
- width: 100%;
- height: 100px;
- font-weight: 400;
- font-size: 30px;
- color: #333333;
- line-height: 40px;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 21px;
- .select-box {
- width: 300px;
- height: 90px;
- border: 1px solid #CCCCCC;
- line-height: 90px;
- text-align: center;
- margin-left: 10px;
- }
- .click-search {
- width: 170px;
- height: 90px;
- background: linear-gradient(180deg, #73EE71 0%, #0ACB63 100%);
- border-radius: 5px;
- font-weight: 400;
- font-size: 24px;
- color: #FFFFFF;
- margin-left: 20px;
- }
- }
- ::v-deep .el-table .el-table__header-wrapper th, .el-table .el-table__fixed-header-wrapper th {
- height: 74px !important;
- font-size: 24px;
- color: #1E410E;
- }
- ::v-deep .el-table tr {
- height: 74px !important;
- font-size: 20px;
- }
- ::v-deep .el-dialog__title {
- font-size: 34px !important;
- }
- ::v-deep .el-dialog {
- margin-top: 0px !important;
- }
- ::v-deep .el-dialog__headerbtn .el-dialog__close {
- font-size: 30px !important;
- }
- }
- .dict-dialog{
- max-width: 570px;
- height: 800px;
- overflow: auto;
- .dict-box {
- font-size: 24px;
- line-height: 34px;
- color: #333333;
- }
- }
- </style>
|