修正線條跟距離
This commit is contained in:
parent
41fac6cfbb
commit
d2d3d3afc8
@ -68,7 +68,7 @@ const left_data = ref([
|
||||
normalImg: btn03B,
|
||||
hoverImg: btn03R,
|
||||
forgeID: 30,
|
||||
line: line03,
|
||||
line: line02,
|
||||
tag: "",
|
||||
arcSide: -1,
|
||||
cameraDistance: 5,
|
||||
@ -141,7 +141,7 @@ const right_data = ref([
|
||||
normalImg: btn07B,
|
||||
hoverImg: btn07R,
|
||||
forgeID: 71,
|
||||
line: line07,
|
||||
line: line06,
|
||||
tag: "TAG_solder_paste_screen_printer",
|
||||
arcSide: -1,
|
||||
cameraDistance: 5,
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<div :class="twMerge(
|
||||
'flex flex-col items-center justify-center h-full absolute -bottom-10 z-30 ',
|
||||
'flex flex-col items-center justify-center h-full absolute -bottom-13 z-30 ',
|
||||
position === 'left' ? 'left-[41px]' : 'right-[41px]'
|
||||
)">
|
||||
<template v-for="(d, i) in data" :key="d.title">
|
||||
<div class="my-6 relative" @click.prevent="() => onClick(d)">
|
||||
<div class="my-5 relative" @click.prevent="() => onClick(d)">
|
||||
<div class="relative">
|
||||
<img :src="imgSrcActive === d.forgeID ? d.hoverImg : d.normalImg" alt="Image" class="w-[360px] h-[150px]">
|
||||
<img :src="d.line" alt="Line" :class="twMerge(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user