Files
qingdao-employment-service/pages/index/components/AIMatch.vue

423 lines
11 KiB
Vue
Raw Normal View History

<template>
2025-12-24 10:53:45 +08:00
<view class="out">
<view v-if="loading" class="loading">
<view class="semicircle-loader"></view>
</view>
2025-12-24 10:53:45 +08:00
<view class="container" id="pixi-box" ref="pixiContainerRef"></view>
<!-- 通信组件 -->
<view style="display: none" :random="random" :change:random="appModule.initPixi" :tagsConfig="tagsConfig" :change:tagsConfig="appModule.setTags" />
</view>
</template>
2025-12-24 10:53:45 +08:00
<script>
export default {
props: {
tags: {
2025-12-24 10:53:45 +08:00
type: Array,
default: () => [],
},
loading: {
2025-12-24 10:53:45 +08:00
type: Boolean,
default: () => false,
},
2025-12-24 10:53:45 +08:00
},
watch: {
tags: {
handler(val) {
if (val && val.length) {
this.tagsConfig.map((tag, index) => {
tag.name = val[index]?.job_name;
});
setTimeout(() => {
this.random++;
}, 100);
}
},
deep: true,
},
},
data: () => ({
random: 0,
tagsConfig: [
{ bgColor: 0x0069fe, fontColor: 0xffffff, size: 16, opacity: 1.0, angle: 0, radius: 0 },
{
2025-12-16 09:22:57 +08:00
bgColor: 0x87e2ec,
fontColor: 0xffffff,
size: 14,
opacity: 1,
angle: -Math.PI / 2,
radius: 68,
tailRotation: Math.PI / 2,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xffebeb,
tailColor: 0xffe1e1,
fontColor: 0xff6969,
size: 11.5,
opacity: 1,
angle: -Math.PI / 4.2,
radius: 125,
tailRotation: (3 * Math.PI) / 4.5,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0x21ea85,
fontColor: 0xffffff,
size: 15,
opacity: 1,
angle: -Math.PI / 10,
radius: 130,
tailRotation: (3 * Math.PI) / 4.2,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xebf3ff,
tailColor: 0xb9d3ff,
fontColor: 0x1d71ef,
size: 12,
opacity: 1,
angle: Math.PI / 18,
radius: 135,
tailRotation: (3 * Math.PI) / 4.3,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xffd4b6,
fontColor: 0xffffff,
size: 14,
opacity: 1,
angle: Math.PI / 4.3,
radius: 100,
tailRotation: -(3 * Math.PI) / 4.5,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xff9400,
fontColor: 0xffffff,
size: 14,
opacity: 1,
angle: (2 * Math.PI) / 3,
radius: 92,
tailRotation: -Math.PI / 2.4,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xebf3ff,
tailColor: 0xb9d3ff,
fontColor: 0x1d71ef,
size: 10.5,
opacity: 1,
angle: (5.4 * Math.PI) / 6,
radius: 110,
tailRotation: (3 * Math.PI) / 1.79,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xff6969,
fontColor: 0xffffff,
size: 14,
opacity: 1,
angle: (6.3 * Math.PI) / 5.8,
radius: 120,
tailRotation: Math.PI / 2.9,
2025-12-24 10:53:45 +08:00
},
{
2025-12-16 09:22:57 +08:00
bgColor: 0xfce9c9,
fontColor: 0xfbc55f,
size: 13,
opacity: 1,
angle: (7.2 * Math.PI) / 5.9,
radius: 120,
tailRotation: Math.PI / 3,
2025-12-24 10:53:45 +08:00
},
],
}),
methods: {
tagClick(tagData) {
this.$emit("tag-click", tagData);
2025-12-16 09:22:57 +08:00
},
2025-12-24 10:53:45 +08:00
},
2025-11-21 10:41:34 +08:00
};
2025-12-24 10:53:45 +08:00
</script>
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
<script module="appModule" lang="renderjs">
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
const clamp = (num, min, max) => Math.min(Math.max(num, min), max);
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
export default {
data() {
return {
app:null,
finallyTags:[],
tagsContainer:null,
activeTagInstances:[],
}
},
mounted() {
window.addEventListener('resize', this.handleResize);
},
beforeDestroy() {
if (this.app) {
this.app.destroy(true, { children: true, texture: true, baseTexture: true });
this.app = null;
}
window.removeEventListener("resize", this.handleResize);
},
methods:{
setTags(tags){
this.finallyTags = [...tags]
console.log(this.finallyTags,'+++++')
},
getContainerDOM(){
return document.getElementById('pixi-box');
},
initPixi(random){
if(!random > 0) return
const container = this.getContainerDOM();
if (!container) return;
const width = container.clientWidth || 300;
const height = container.clientHeight || 300;
if (this.app) return;
this.app = new PIXI.Application({
width: width,
height: height,
backgroundAlpha: 0,
backgroundColor: 0xf5f7fa,
antialias: true,
resolution: window.devicePixelRatio || 1,
autoDensity: true,
});
this.app.view.style.touchAction = 'auto';
container.appendChild(this.app.view);
this.tagsContainer = new PIXI.Container();
this.app.stage.addChild(this.tagsContainer);
this.renderScene(width, height);
},
2025-12-16 09:22:57 +08:00
2025-12-24 10:53:45 +08:00
renderScene(sw, sh){
let ratio = window.innerWidth / 400;
if (ratio < 1) ratio = 1;
// 先清理旧的标签事件监听器
if (this.activeTagInstances && this.activeTagInstances.length > 0) {
this.activeTagInstances.forEach(tag => {
if (tag) {
tag.eventMode = 'none';
tag.removeAllListeners();
}
});
this.activeTagInstances = [];
}
// 确保容器清空
if (this.tagsContainer) {
this.tagsContainer.removeChildren();
}
this.finallyTags.forEach((data, index) => {
2025-12-16 09:22:57 +08:00
const scaledRadius = data.radius * ratio;
let x = sw / 2 + scaledRadius * Math.cos(data.angle);
let y = sh / 2 + scaledRadius * Math.sin(data.angle);
2025-12-24 10:53:45 +08:00
const tag = this.createTag(data, index, ratio);
2025-12-16 09:22:57 +08:00
2025-12-24 10:53:45 +08:00
this.tagsContainer.addChild(tag);
2025-12-16 09:22:57 +08:00
const safeW = tag.width / 2 + 10;
const safeH = tag.height / 2 + 10;
// 强制修正 x 和 y使其不超出屏幕
x = clamp(x, safeW, sw - safeW);
y = clamp(y, safeH, sh - safeH);
tag.x = x;
tag.y = y;
// 4. 保存元数据
tag.userData = {
originalX: x,
originalY: y,
angle: data.angle,
radius: scaledRadius,
floatOffset: Math.random() * Math.PI * 2,
floatSpeed: 0.01 + Math.random() * 0.02,
floatRange: 2 * ratio + Math.random() * 2,
2025-12-16 09:22:57 +08:00
safeH: safeH,
};
if (data.radius > 0) {
2025-12-24 10:53:45 +08:00
const tail = this.createCometTail(
2025-12-16 09:22:57 +08:00
data.tailColor || data.bgColor,
data.tailRotation,
tag.width,
tag.height,
ratio
);
tag.addChildAt(tail, 0);
tag.updateTail = () => tail.updateAnim();
}
2025-12-24 10:53:45 +08:00
this.activeTagInstances.push(tag);
2025-12-16 09:22:57 +08:00
});
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
// 动画循环
this.app.ticker.add(() => {
const screenH = this.app.screen.height;
this.activeTagInstances.forEach((tag) => {
2025-12-16 09:22:57 +08:00
const meta = tag.userData;
if (meta) {
// 计算新的浮动位置
meta.floatOffset += meta.floatSpeed;
let nextY = meta.originalY + Math.sin(meta.floatOffset) * meta.floatRange;
// 再次进行边界检查
if (nextY < meta.safeH) nextY = meta.safeH;
if (nextY > screenH - meta.safeH) nextY = screenH - meta.safeH;
tag.y = nextY;
if (tag.updateTail) tag.updateTail();
}
});
});
2025-12-24 10:53:45 +08:00
},
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
createTag(tagData, index, ratio){
if (ratio > 1) ratio = ratio * 0.9;
const tagGroup = new PIXI.Container();
tagGroup.cursor = 'pointer';
tagGroup.eventMode = 'static';
tagGroup.on('pointertap', () =>{
this.$ownerInstance.callMethod('tagClick', tagData);
});
const text = new PIXI.Text(tagData.name, {
fontFamily: ['PingFang SC', 'Microsoft YaHei', 'Arial'],
fontSize: tagData.size * ratio,
fill: tagData.fontColor,
padding: 4 * ratio,
resolution: 2,
});
text.anchor.set(0.5);
const paddingH = 26 * ratio;
const paddingV = 10 * ratio;
let bgWidth = text.width + paddingH;
let bgHeight = text.height + paddingV;
if (index === 0) bgWidth = Math.max(bgWidth, tagData.size * 4.5);
const bg = new PIXI.Graphics();
bg.beginFill(tagData.bgColor, tagData.opacity ?? 1);
bg.drawRoundedRect(-bgWidth / 2, -bgHeight / 2, bgWidth, bgHeight, bgHeight / 2);
bg.endFill();
tagGroup.addChild(bg);
tagGroup.addChild(text);
return tagGroup;
},
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
createCometTail(bgColor, tailRotation, parentWidth, parentHeight, ratio){
if (ratio > 1) ratio = ratio;
const tailGroup = new PIXI.Container();
const graphics = new PIXI.Graphics();
tailGroup.addChild(graphics);
const baseLength = 45 * ratio;
const startWidth = parentHeight + 20 * ratio;
const endWidth = parentHeight * 0.4;
let breathPhase = Math.random() * Math.PI * 2;
const breathSpeed = 0.04;
tailGroup.updateAnim = () => {
breathPhase += breathSpeed;
const breathScale = 0.85 + 0.15 * Math.sin(breathPhase);
graphics.clear();
const currentLength = baseLength * breathScale;
const cos = Math.cos(tailRotation);
const sin = Math.sin(tailRotation);
const perpX = -sin;
const perpY = cos;
const p1 = { x: perpX * (startWidth / 2), y: perpY * (startWidth / 2) };
const p2 = { x: -perpX * (startWidth / 2), y: -perpY * (startWidth / 2) };
const endCX = cos * currentLength;
const endCY = sin * currentLength;
const p3 = { x: endCX - perpX * (endWidth / 2), y: endCY - perpY * (endWidth / 2) };
const p4 = { x: endCX + perpX * (endWidth / 2), y: endCY + perpY * (endWidth / 2) };
const segments = 8;
for (let i = 0; i < segments; i++) {
const t1 = i / segments;
const t2 = (i + 1) / segments;
const alpha = 0.4 * (1 - t1);
const sp1 = { x: p1.x + (p4.x - p1.x) * t1, y: p1.y + (p4.y - p1.y) * t1 };
const sp2 = { x: p2.x + (p3.x - p2.x) * t1, y: p2.y + (p3.y - p2.y) * t1 };
const ep1 = { x: p1.x + (p4.x - p1.x) * t2, y: p1.y + (p4.y - p1.y) * t2 };
const ep2 = { x: p2.x + (p3.x - p2.x) * t2, y: p2.y + (p3.y - p2.y) * t2 };
graphics.beginFill(bgColor, alpha);
graphics.moveTo(sp1.x, sp1.y);
graphics.lineTo(sp2.x, sp2.y);
graphics.lineTo(ep2.x, ep2.y);
graphics.lineTo(ep1.x, ep1.y);
graphics.endFill();
}
};
tailGroup.updateAnim();
return tailGroup;
},
2025-11-21 10:41:34 +08:00
2025-12-24 10:53:45 +08:00
handleResize(){
const container = this.getContainerDOM();
if (!this.app || !container) return;
this.app.destroy(true, { children: true, texture: true, baseTexture: true });
this.app = null;
this.initPixi(1);
},
}
2025-12-24 10:53:45 +08:00
}
</script>
<style scoped>
2025-12-16 09:22:57 +08:00
.out {
2025-12-24 10:53:45 +08:00
width: 100%;
height: 100%;
}
2025-12-16 09:22:57 +08:00
.loading {
2025-12-24 10:53:45 +08:00
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
2025-12-16 09:22:57 +08:00
.semicircle-loader {
2025-12-24 10:53:45 +08:00
width: 150rpx;
height: 150rpx;
border: 12rpx solid #f3f3f3;
border-top: 12rpx solid #3498db;
border-radius: 50%;
animation: spin 1.2s linear infinite;
2025-12-16 09:22:57 +08:00
}
@keyframes spin {
2025-12-24 10:53:45 +08:00
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.container {
2025-12-24 10:53:45 +08:00
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
color: #b9d3ff;
}
</style>