123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- <script setup lang="ts">
- import { ref } from "vue";
- import titHeader from "./components/tit-header.vue";
- import { useCommonStoreHook } from "@/store";
- import { getTestProjectList } from "@/api/project";
- import { CheckboxValueType } from "element-plus";
- import {
- searchExcutingInstrumentConfig,
- searchTestMachineConfig,
- searhTestType,
- } from "@/api/project/excute";
- const { currentExecutionId } = toRefs(useCommonStoreHook());
- interface VersionItem {
- instrumentType: string;
- configName: string;
- configIp: string;
- }
- const formLabelAlign = ref<VersionItem>({
- instrumentType: "",
- configName: "",
- configIp: "",
- zhongduan: "",
- });
- const drawer = ref(false);
- onMounted(() => {
- getTestProjectTopList();
- getAllTestTypes();
- getExcutingMachines();
- });
- const topProAllList = ref<any[]>([]);
- const topProSelectedList = ref<any[]>([]);
- const checkAll = ref(false);
- const isIndeterminate = ref(true);
- const handleCheckAllChange = (val: CheckboxValueType) => {
- topProSelectedList.value = val
- ? topProAllList.value.map((item) => item.id)
- : [];
- isIndeterminate.value = false;
- };
- const handletopProSelectedListChange = (value: CheckboxValueType[]) => {
- const checkedCount = value.length;
- checkAll.value = checkedCount === topProAllList.value.length;
- isIndeterminate.value =
- checkedCount > 0 && checkedCount < topProAllList.value.length;
- };
- // 获取顶部测试项目
- const getTestProjectTopList = () => {
- getTestProjectList({ engineeringId: currentExecutionId.value }).then(
- (result) => {
- topProAllList.value = result.data;
- topProSelectedList.value = result.data.map((item) => item.id); // 默认选中全部
- }
- );
- };
- // 顶部展示的项目 是弹窗选中的项目
- const topOnShowProList = computed(() => {
- return topProAllList.value.filter((item) =>
- topProSelectedList.value.includes(item.id)
- );
- });
- // 下面左边第一列
- const allTestTypes = ref<any[]>([]);
- const getAllTestTypes = () => {
- searhTestType().then((result) => {
- allTestTypes.value = result.data;
- });
- };
- // 下边第二列
- const excutingMachinesList = ref<any[]>([]); // 所有执行终端
- const getExcutingMachines = () => {
- searchTestMachineConfig(currentExecutionId.value).then((result) => {
- excutingMachinesList.value = result.data;
- });
- };
- const testingMachines = ref<any[]>([]); // 所有routeData里面的测试仪器
- const getExcutingGlobalMachines = async () => {
- let res = await searchExcutingInstrumentConfig(
- currentExecutionId.value,
- topProSelectedList.value
- );
- testingMachines.value = res.data;
- };
- </script>
- <template>
- <div class="runtest">
- <el-scrollbar>
- <div class="content-A">
- <div class="drawerbtn" @click="drawer = true">
- <svg-icon icon-class="project-config" />
- </div>
- <el-scrollbar height="100%">
- <div class="test-list">
- <div
- v-for="item in topOnShowProList"
- :key="item.id"
- class="test-list-item"
- :class="item === 2 ? 'active' : ''"
- >
- <!-- //后面根据状态动态修改class -->
- <!-- //'success',合格
- 'error', 失败
- 'progress',测试中
- 'wait' 未开始-->
- <!-- :class="['success', 'error', 'progress', 'wait']"-->
- <div class="body" :class="['success']">
- <div class="line"></div>
- <div class="head">合格</div>
- <div class="icon">
- <svg-icon icon-class="gougou" class="svg svg-success" />
- <svg-icon icon-class="chacha" class="svg svg-error" />
- <svg-icon icon-class="Frame" class="svg svg-progress" />
- </div>
- <div class="name">{{ item.projectName }}</div>
- </div>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <div class="content-B">
- <div class="content-B-1">
- <titHeader icon-class="csgcxx" tit="测试工程信息" />
- <el-form
- label-position="top"
- label-width="auto"
- :model="formLabelAlign"
- ref="ruleFormRef"
- >
- <el-form-item label="产品编号" prop="instrumentType">
- <el-input v-model="formLabelAlign.instrumentType" />
- </el-form-item>
- <el-form-item label="测试类型" prop="configName">
- <el-select
- v-model="formLabelAlign.configName"
- placeholder="选择测试类型"
- >
- <el-option
- v-for="item in allTestTypes"
- :key="item.dictValue"
- :label="item.dictLabel"
- :value="item.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="测试地点" prop="configIp">
- <el-input v-model="formLabelAlign.configIp" />
- </el-form-item>
- </el-form>
- </div>
- <div class="content-B-2">
- <titHeader icon-class="zxzd-yq" tit="执行终端/仪器" />
- <el-form
- label-position="top"
- label-width="auto"
- :model="formLabelAlign"
- style="max-width: 600px"
- ref="ruleFormRef"
- >
- <el-form-item label="执行终端" prop="configName">
- <div class="select-div">
- <el-select
- class="select-item"
- v-model="formLabelAlign.zhongduan"
- placeholder="选择执行终端"
- >
- <el-option
- v-for="item in excutingMachinesList"
- :key="item.id"
- :label="item.configName"
- :value="item.id"
- />
- </el-select>
- <el-button class="test-min-btn" type="primary">
- <svg-icon icon-class="refresh1" />
- </el-button>
- </div>
- </el-form-item>
- </el-form>
- <div>
- <svg-icon icon-class="gougou" class="svg-success" />
- <span>192.168.0.109</span>
- </div>
- <div class="csyq-tit">
- <span>测试仪器</span>
- <el-button class="test-min-btn" type="primary">
- <svg-icon icon-class="project-config" />
- </el-button>
- </div>
- <div class="csyq-list">
- <div v-for="(item, index) in 15" :key="index" class="csyq-item">
- <div>
- <span class="item-icon">
- <svg-icon icon-class="gougou" class="svg-success" />
- </span>
- <span>信号源1</span>
- </div>
- <div>192.168.0.109</div>
- </div>
- </div>
- </div>
- <div class="content-B-3">
- <titHeader icon-class="zxgcrz" tit="执行过程日志" />
- <div class="content-log">
- 开始执行,时间14:28:32 打开电源 打开射频开关
- 执行增益测试,结果合格 执行杂波测试,结果合格 测试完成 电源关闭
- </div>
- </div>
- <div class="content-B-4">
- <el-button class="test-min-btn" type="primary">
- <svg-icon icon-class="refresh1" />
- </el-button>
- <titHeader icon-class="cssj" tit="测试数据" />
- <div class="cssj-row-flex">
- <span>序号</span>
- <span>数据项</span>
- <span>数据内容</span>
- </div>
- <div>
- <div class="cssj-tit">测试项目:1dB压缩点</div>
- <div v-for="(item, index) in 5" :key="index" class="cssj-row-flex">
- <span>{{ index }}</span>
- <span>数据项</span>
- <span>数据内容</span>
- </div>
- </div>
- </div>
- </div>
- <div class="content-C">
- <div class="left">
- <div class="test-btn progress">
- <svg-icon icon-class="project-config" />
- 全局配置
- </div>
- <div>
- <p><span>产品:</span><span>变频模块</span></p>
- <p><span>工程类型:</span><span>变频模块</span></p>
- </div>
- </div>
- <div class="center">
- <div class="center-item">
- <div class="center-num">10</div>
- <div class="center-tit">今日检测产品数量</div>
- </div>
- <div class="center-item">
- <div class="center-num">10</div>
- <div class="center-tit">历史检测产品数量</div>
- </div>
- </div>
- <div class="right">
- <div>已用时:300s</div>
- <div class="test-btn progress">
- <svg-icon icon-class="start-test" />
- 开始测试
- </div>
- <div class="test-btn error">
- <svg-icon icon-class="stop-test" />
- 停止测试
- </div>
- </div>
- </div>
- </el-scrollbar>
- <el-drawer v-model="drawer" direction="rtl" class="test-drawer">
- <template #header>
- <div class="test-drawer-header">选择测试项</div>
- </template>
- <template #default>
- <el-checkbox
- v-model="checkAll"
- :indeterminate="isIndeterminate"
- @change="handleCheckAllChange"
- >
- 全选
- </el-checkbox>
- <el-scrollbar>
- <el-checkbox-group
- v-model="topProSelectedList"
- @change="handletopProSelectedListChange"
- class="drawer-list"
- >
- <div
- v-for="item in topProAllList"
- :key="item.id"
- class="drawer-list-item"
- >
- <el-checkbox label="" :value="item.id" />
- <span>{{ item.projectName }}</span>
- </div>
- </el-checkbox-group>
- </el-scrollbar>
- </template>
- <template #footer>
- <div style="flex: auto">
- <el-button>取消</el-button>
- <el-button type="primary">保存</el-button>
- </div>
- </template>
- </el-drawer>
- </div>
- </template>
- <style scoped lang="scss">
- $color-success: #8fe200;
- $color-error: #f83c64;
- $color-progress: #3cbaff;
- .test-btn {
- width: 130px;
- height: 36px;
- line-height: 36px;
- margin: 0 auto;
- color: var(--hj-white-1);
- text-align: center;
- border-radius: 4px 4px 4px 4px;
- cursor: pointer;
- }
- .progress {
- background: var(--hj-bg1);
- }
- .error {
- background: var(--hj-bg2);
- }
- .test-min-btn {
- margin-left: 4px;
- flex: 0 0 36px;
- width: 36px;
- height: 36px;
- text-align: center;
- line-height: 36px;
- background: #e6f1fc;
- border-radius: 4px 4px 4px 4px;
- border: 1px solid #a3d0fd;
- font-size: var(--hj-fs-22);
- color: var(--fc-color-7);
- }
- .svg-success {
- color: $color-success;
- }
- .svg-error {
- color: $color-error;
- }
- .svg-progress {
- color: $color-progress;
- }
- .runtest {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- font-size: var(--hj-fs-12);
- .content-A {
- position: relative;
- width: 100%;
- height: 300px;
- background: linear-gradient(180deg, #404040 0%, #505050 100%);
- border-radius: 0px 0px 0px 0px;
- :deep(.el-scrollbar__view) {
- height: 100%;
- }
- .drawerbtn {
- position: absolute;
- z-index: 10;
- right: 10px;
- top: 10px;
- width: 36px;
- height: 36px;
- font-size: var(--hj-fs-22);
- color: var(--hj-white-1);
- cursor: pointer;
- }
- .test-list {
- display: flex;
- justify-content: center;
- height: 100%;
- }
- .test-list-item {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 142px;
- height: 100%;
- text-align: center;
- &.active {
- background: linear-gradient(
- 180deg,
- rgba(255, 255, 255, 0) 0%,
- #ffffff 100%
- );
- }
- .body {
- background: linear-gradient(180deg, #707070 0%, #515151 100%);
- box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
- border: 1px solid #7e7e7e;
- border-radius: 5px;
- margin: auto;
- width: 108px;
- height: 240px;
- color: var(--hj-white-1);
- cursor: pointer;
- .line {
- width: 100%;
- height: 6px;
- border-radius: 5px 5px 0px 0px;
- }
- .head {
- margin: 0 14px;
- color: var(--fc-color-8);
- padding: 7px 0;
- border-bottom: 1px solid #a8a8a8;
- }
- .icon {
- margin: 0 auto;
- width: 36px;
- height: 36px;
- margin-top: 50px;
- margin-bottom: 50px;
- font-size: var(--hj-fs-32);
- .svg {
- display: none;
- }
- }
- .name {
- font-weight: bold;
- font-size: var(--hj-fs-14);
- }
- }
- .body.success {
- .line {
- background-color: #8fe200;
- }
- .svg-success {
- display: block;
- }
- }
- .body.error {
- .line {
- background-color: #f83c64;
- }
- .svg-error {
- display: block;
- }
- }
- .body.progress {
- .line {
- background-color: #3cbaff;
- }
- .svg-progress {
- display: block;
- }
- }
- .body.wait {
- .line {
- background-color: #ededed;
- }
- }
- }
- }
- .content-B {
- width: 100%;
- min-height: 300px;
- background-color: var(--hj-bg);
- margin-bottom: 70px;
- display: flex;
- .content-B {
- &-1,
- &-2,
- &-3,
- &-4 {
- margin-top: 30px;
- padding: 0 18px;
- border-left: 1px solid #afb9d0;
- }
- &-1 {
- border-left: none;
- }
- }
- .content-B-1 {
- flex: 0 0 19%;
- }
- .content-B-2 {
- flex: 0 0 22%;
- .select-div {
- display: flex;
- width: 100%;
- .select-item {
- flex: 1;
- }
- }
- .csyq-tit {
- display: flex;
- justify-content: space-between;
- height: 36px;
- line-height: 36px;
- font-size: var(--hj-fs-14);
- font-weight: bold;
- color: var(--fc-color-5);
- }
- .csyq-list {
- .csyq-item {
- font-size: var(--hj-fs-12);
- display: flex;
- justify-content: space-between;
- height: 30px;
- line-height: 30px;
- border-bottom: 1px solid var(--fc-color-5);
- .item-icon {
- font-size: var(--hj-fs-22);
- margin-right: 8px;
- }
- }
- }
- }
- .content-B-3 {
- flex: 0 0 19%;
- .content-log {
- font-weight: 400;
- font-size: var(--hj-fs-12);
- color: var(--fc-color-5);
- line-height: 18px;
- }
- }
- .content-B-4 {
- flex: 0 0 40%;
- position: relative;
- .test-min-btn {
- position: absolute;
- right: 20px;
- }
- .cssj-tit {
- height: 26px;
- line-height: 26px;
- text-align: center;
- font-weight: bolder;
- font-size: var(--hj-fs-12);
- color: var(--fc-color-5);
- }
- .cssj-row-flex {
- display: flex;
- height: 31px;
- line-height: 31px;
- border-bottom: 1px solid var(--fc-color-5);
- font-size: var(--hj-fs-14);
- > span:nth-of-type(1) {
- flex: 0 0 13%;
- text-align: center;
- }
- > span:nth-of-type(2) {
- flex: 0 0 45%;
- }
- > span:nth-of-type(3) {
- flex: 0 0 42%;
- text-align: center;
- }
- }
- }
- }
- .content-C {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 64px;
- background: linear-gradient(180deg, #434343 0%, #4f4f4f 100%);
- display: flex;
- justify-content: space-between;
- .left {
- padding: 0 12px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- p {
- display: block;
- line-height: 10px;
- color: var(--hj-white-1);
- margin-left: 15px;
- span {
- font-size: var(--hj-fs-14);
- &:nth-of-type(1) {
- font-weight: 400;
- }
- &:nth-of-type(2) {
- font-weight: bold;
- }
- }
- }
- }
- .center {
- display: flex;
- text-align: right;
- align-items: center;
- .center-item {
- min-width: 140px;
- .center-tit {
- font-size: var(--hj-fs-12);
- color: var(--hj-white-1);
- line-height: 16px;
- }
- .center-num {
- font-weight: bold;
- font-size: var(--hj-fs-18);
- color: var(--hj-white-1);
- line-height: 21px;
- border-bottom: 1px solid var(--hj-white-1);
- }
- }
- }
- .right {
- display: flex;
- align-self: center;
- align-content: center;
- align-items: center;
- font-size: var(--hj-fs-12);
- color: var(--hj-white-1);
- > div {
- margin-left: 12px;
- }
- }
- }
- :deep(.test-drawer) {
- background: linear-gradient(180deg, #434343 0%, #4f4f4f 100%);
- box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
- }
- .test-drawer-header {
- font-weight: 400;
- font-size: var(--hj-fs-14);
- color: var(--hj-white-1);
- line-height: 19px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .drawer-list {
- font-size: var(--hj-fs-12);
- .drawer-list-item {
- height: 36px;
- line-height: 36px;
- margin-bottom: 12px;
- padding: 0 12px;
- background: linear-gradient(180deg, #656565 0%, #555555 100%);
- box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
- border-radius: 4px 4px 4px 4px;
- color: var(--hj-white-1);
- }
- }
- }
- </style>
|