You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
3.2 KiB

<template>
<div class="container">
<div id="pwpg" class="pwpg" ref="pwpg"></div>
8 months ago
<QgePgd id="pwpgd" ref="pwpgd" @initPgd="initPgd" :pgd="pgd" />
</div>
</template>
<script>
import container from "./comps/container";
import drawTitle from './comps/title'
import workers from "./comps/person";
import drawDw from './comps/dw'
import drawPgd from './comps/pgd'
import baifang from "./comps/baifang";
8 months ago
import {getPgd, getYcldw} from "@/api/zyjh";
import {getBzryList} from "@/api/sjzx/bzzGL";
import QgePgd from "@/views/zyjhzx/qgefkui/comps/QgePgd.vue";
export default {
name:'PWanFKui',
8 months ago
components: {QgePgd},
data(){
return {
title:'切 割 作 业 反 馈',
width:0,
height:0,
stage:null,
layer:null,
pgdGroup:null,
drawGd:null,
8 months ago
dw:[],
pgd:[],
currentWorker:null,
}
},
mounted() {
this.initKonvaStage();
},
methods:{
initPgd(pgd={}){
const group=this.drawGd(pgd)
this.pgdGroup.add(group)
},
initBaiFang(index,list){
if (this.slGroup){
this.slGroup.destroyChildren()
}
this.canSl=true
this.currentDwIndex=index
const {slGroup,handler}= baifang({width:this.width,height:this.height,dw:list})
this.slGroup=slGroup
this.drawBaiFang=handler
this.layer.add(slGroup)
},
initDw(){
const that=this
8 months ago
getYcldw().then(res=>{
const {container,dw}=drawDw(this.width,this.height,that.initBaiFang)
const group=container()
this.layer.add(group)
8 months ago
for (let i=0;i<res.data.length;i++){
const item=res.data[i]
const dwGroup=dw(i,item)
group.add(dwGroup)
}
})
},
initWorkers(){
8 months ago
const that=this
getBzryList({resourcesCode:'4KB002'}).then(res=>{
const {container,person}=workers(this.width,this.height)
const group=container()
8 months ago
group.on('click touchstart',function (){
that.currentWorker=person
getPgd({user:that.currentWorker.userCode,zt:'6'}).then(res=>[
8 months ago
that.pgd=res.data
])
})
this.layer.add(group)
8 months ago
for (let i=0;i<res.data.length;i++){
const item=res.data[i]
const worker=person(i,item)
group.add(worker)
}
})
},
initKonvaStage(){
this.width=this.$refs.pwpg.clientWidth
this.height=this.$refs.pwpg.clientHeight
const {stage,layer}=container(this.width,this.height,'pwpg')
this.stage=stage
this.layer=layer
const titel=drawTitle(this.width,this.height,this.title)
this.layer.add(titel)
this.initWorkers()
this.initDw()
const {container:pgdContainer,drawGd}=drawPgd(this.width,this.height)
this.drawGd=drawGd
this.pgdGroup=pgdContainer()
this.layer.add(this.pgdGroup)
const csdGroup=drawCsd(this.width,this.height)
this.layer.add(csdGroup)
},
}
}
</script>
<style>
#pwpgd {
8 months ago
width:55%;
height: auto;
position: absolute;
top:45px;
left:20px;
border: none;
margin: 0;
}
#pwpg {
overflow: hidden;
width: 100%;
height: 100vh;
aspect-ratio: 16/9;
}
.container{
background: #ddd;
}
</style>