|
|
@ -0,0 +1,54 @@ |
|
|
|
<template> |
|
|
|
<div class="main-page px-6 pt-6 pb-7 flex justify-between"> |
|
|
|
<div class="shadow-card w-[476px]"> |
|
|
|
<div class="flex items-center mx-9 mt-[22px] gap-5"> |
|
|
|
<p class="font-medium text-primary">喷涂路线</p> |
|
|
|
<img :src="route_v" alt="icon" /> |
|
|
|
<img :src="route_h2" alt="icon" /> |
|
|
|
</div> |
|
|
|
<p class="mx-9 mt-5 mb-4 font-medium text-primary">选择喷涂区域</p> |
|
|
|
<section class="bg-white h-[320px] mx-4 border"> |
|
|
|
|
|
|
|
</section> |
|
|
|
</div> |
|
|
|
<div class="shadow-card w-[476px]"> |
|
|
|
<div class="wrapper grid grid-cols-3 mt-16 gap-x-3 gap-y-4"> |
|
|
|
<span class="self-center text-right text-primary font-medium">氮气流速</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">毫米/每秒</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">氮气气压</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">MPa</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">基质流速</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">ul/min</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">喷雾电压</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">V</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">移动速度</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">毫米/每秒</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">行间距</span> |
|
|
|
<input type="text" class="border-none outline-none h-[34px] bg-[#E8ECF7] text-primary font-medium rounded-md text-lg text-center" /> |
|
|
|
<span class="self-center text-primary font-medium">毫米</span> |
|
|
|
|
|
|
|
<span class="self-center text-right text-primary font-medium">喷涂完成后蜂鸣</span> |
|
|
|
<div class="flex items-center gap-x-8"> |
|
|
|
<div class="true">是</div> |
|
|
|
<div class="false">否</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script setup lang="ts"> |
|
|
|
import route_v from "@/assets/route_vertical.png"; |
|
|
|
import route_v2 from "@/assets/route_vertical2.png"; |
|
|
|
import route_h from "@/assets/route_horizontal.png"; |
|
|
|
import route_h2 from "@/assets/route_horizontal2.png"; |
|
|
|
</script> |