123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953 |
- <script setup lang="ts">
- import { ref } from "vue";
- import titHeader from "./components/tit-header.vue";
- import ConfigDataAndDevice from "./components/configDataAndDevice.vue";
- import { useWebSocket } from "@vueuse/core";
- import { useCommonStoreHook } from "@/store";
- import { getTestProjectList } from "@/api/project";
- import { CheckboxValueType } from "element-plus";
- import {
- searchExcutingGlobalData,
- searchExcutingInstrumentConfig,
- searchExecuteStatistics,
- searchInstrumentStatus,
- searchTestMachineConfig,
- searhTestType,
- startExecuteProjects,
- stopExecuteProjects,
- } from "@/api/project/excute";
- const route = useRoute();
- interface VersionItem {
- testLocation: string;
- productCode: string;
- testType: string;
- }
- const formLabelAlign = ref<VersionItem>({
- testLocation: "",
- productCode: "",
- testType: "",
- });
- // 选择的执行终端
- const selectedExcutingMachine = ref<any>();
- const drawer = ref(false);
- onMounted(async () => {
- getAllTestTypes();
- getExcutingMachines();
- getTestProjectTopList();
- getSattisticData();
- });
- const topProAllList = ref<any[]>([]);
- const topProSelectedList = ref<any[]>([]);
- const checkAll = ref(false);
- const isIndeterminate = ref(true);
- // 根据状态改变已经选择的项目的上方的名字
- const getSelectedStatusValue = (status: number) => {
- // 1:未测试 2:正在测试 3:测试合格 4:测试不合格
- let value = ["", "", ""]; //上方名字 中间icon class
- switch (status) {
- case 1:
- value = ["未开始", "", "bg-normal"];
- break;
- case 2:
- value = ["测试中", "Frame", "bg-progress"];
- break;
- case 3:
- value = ["合格", "gougou", "bg-success"];
- break;
- case 4:
- value = ["失败", "chacha", "bg-error"];
- break;
- default:
- value = ["未开始", "", "bg-normal"];
- }
- return value;
- };
- 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: route?.params?.engineerId })
- .then((result) => {
- topProAllList.value = result.data;
- topProAllList.value[0].status = 1;
- topProAllList.value[1].status = 2;
- topProAllList.value[2].status = 3;
- topProAllList.value[3].status = 4;
- topProSelectedList.value = result.data.map((item) => item.id); // 默认选中全部
- })
- .finally(() => {
- getExcutingGlobalMachines();
- getExcutingGlobalData();
- });
- };
- // 顶部展示的项目 是弹窗选中的项目
- 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(route?.params?.engineerId as string).then(
- (result) => {
- excutingMachinesList.value = result.data;
- }
- );
- };
- const testingMachines = ref<any[]>([]); // 所有routeData里面的测试仪器
- const getExcutingGlobalMachines = async () => {
- let res = await searchExcutingInstrumentConfig(
- route?.params?.engineerId as string,
- topProAllList.value.map((item) => item.id)
- );
- testingMachines.value = res.data;
- // 拿到仪器数据之后 调用接口查看仪器是否在线
- // let status = await searchInstrumentStatus(testingMachines.value);
- };
- // 最下方全局数据
- const excutingGlobalData = ref<any[]>([]);
- const getExcutingGlobalData = async () => {
- let res = await searchExcutingGlobalData(
- route?.params?.engineerId as string,
- topProAllList.value.map((item) => item.id)
- );
- excutingGlobalData.value = res.data;
- };
- // 配置这次执行的工程相关的数据和仪器
- const configDrawerVisible = ref(false);
- // 开始测试相关
- const isTesting = ref(false);
- const currentTestingProject = ref<any>();
- const startToRunTest = async () => {
- if (!checkStartEnable()) return;
- let params = {
- configList: testingMachines.value,
- engineeringId: route.params.engineerId,
- globalDataList: excutingGlobalData.value,
- projectList: topProSelectedList.value,
- ...formLabelAlign.value,
- executeTerminal: selectedExcutingMachine.value.id,
- };
- let res = await startExecuteProjects(params);
- currentTestingProject.value = res.data;
- isTesting.value = true;
- };
- const stopTesting = async () => {
- let res = await stopExecuteProjects(currentTestingProject.value?.id);
- isTesting.value = false;
- currentTestingProject.value = {};
- getSattisticData();
- };
- // 查询下边统计数据
- const statisticsData = ref<object>();
- const getSattisticData = () => {
- searchExecuteStatistics(route?.params?.engineerId as string).then(
- (result) => {
- statisticsData.value = result.data;
- }
- );
- };
- // ===== websocket ====
- const logList = ref<any[]>([]); //日志数据
- const testingWSData = computed(() => {
- // 根据选择的测试项目的名字作为key,值是空数组用来存放 日志数据
- console.log("aa", topProSelectedList);
- let data = {};
- topProSelectedList.value.forEach((id) => {
- // 根据id去所有的数据中找对应的项目
- let project = topProAllList.value.find((item) => item.id == id);
- data[project.projectName] = [];
- });
- return data;
- });
- const wsClient = useWebSocket(import.meta.env.VITE_WEBSOCKET_URL as string, {
- autoReconnect: {
- retries: 300,
- delay: 3000,
- onFailed() {
- console.log("长链接失败");
- },
- },
- // heartbeat: {
- // message: "ping",
- // interval: 1000,
- // pongTimeout: 1000,
- // },
- heartbeat: false,
- onConnected: () => {
- console.log("长链接成功");
- },
- onDisconnected: () => {
- console.log("长链接断开");
- },
- onMessage: (msg) => {
- if (wsClient.data.value) {
- let msgType = wsClient.data.value?.msgtype ?? "";
- // 执行过程日志
- if (msgType == 1) {
- // let l = { data: { log: "label: 直流电源" }, msgtype: 1 };
- let logData = wsClient.data.value?.data?.log;
- if (logData) {
- logList.value.push(logData);
- }
- }
- // 测试数据
- else if (msgType === 2) {
- // {
- // "msgtype": 2,
- // "data": {
- // "status": 1, // 1:未测试 2:正在测试 3:测试合格 4:测试不合格
- // "dataContent": "",
- // "dataItem": "",
- // "EngineeringId": "",
- // "projectId": "",
- // }
- // }
- let logData = wsClient.data.value?.data;
- if (logData) {
- // 根据 projectId 去已经选择的项目中找到名字
- let project = topProSelectedList.value.find(
- (item) => item.id == logData.projectId
- );
- project.status = logData.status;
- let proName = project?.projectName;
- testingWSData.value[proName].push(logData);
- }
- }
- // 测试仪器列表状态
- else if (msgType === 3) {
- // {
- // "msgtype": 3,
- // "data": [{
- // "deviceNo":"", /* 设备编号 */
- // "devcieState":"" /* 0不在线,1在线 */
- // }
- // ]
- // }
- let devData = wsClient.data.value?.data ?? [];
- devData.forEach((item) => {
- // 根据 instrumentId 去已经选择的仪器中找到名字
- let machine = testingMachines.value.find(
- (machine) => machine.instrumentId == item.instrumentId
- );
- if (machine) {
- machine.deviceState = item.deviceState; // 更新仪器状态
- }
- });
- }
- }
- console.log("长链接的消息", data.value);
- },
- });
- onMounted(() => {
- wsClient.open();
- });
- onBeforeUnmount(() => {
- wsClient.close();
- });
- const checkStartEnable = (): boolean => {
- let enable = true;
- if (!selectedExcutingMachine.value) {
- ElMessage.warning("请选择执行终端");
- enable = false;
- }
- if (!formLabelAlign.value.productCode) {
- ElMessage.warning("请输入产品编号");
- enable = false;
- }
- if (!formLabelAlign.value.testType) {
- ElMessage.warning("请选择测试类型");
- enable = false;
- }
- if (!formLabelAlign.value.testLocation) {
- ElMessage.warning("请输入测试地点");
- enable = false;
- }
- if (topProSelectedList.value.length < 1) {
- ElMessage.warning("请选择测试项目");
- enable = false;
- }
- return enable;
- };
- </script>
- <template>
- <div class="runtest">
- <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">
- <!-- // 1:未测试 2:正在测试 3:测试合格 4:测试不合格-->
- <div
- v-for="item in topOnShowProList"
- :key="item.id"
- class="test-list-item"
- :class="item.status == '2' ? 'active' : ''"
- >
- <div class="body" :class="['success']">
- <div
- class="line"
- :class="getSelectedStatusValue(item.status)[2]"
- ></div>
- <div class="head">
- {{ getSelectedStatusValue(item.status)[0] }}
- </div>
- <div class="icon">
- <svg-icon
- v-if="item.status == '3'"
- icon-class="gougou"
- class="svg svg-success"
- />
- <svg-icon
- v-else-if="item.status == '4'"
- icon-class="chacha"
- class="svg svg-error"
- />
- <svg-icon
- v-else-if="item.status == '2'"
- 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="productCode">
- <el-input v-model="formLabelAlign.productCode" />
- </el-form-item>
- <el-form-item label="测试类型" prop="testType">
- <el-select
- v-model="formLabelAlign.testType"
- 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="testLocation">
- <el-input v-model="formLabelAlign.testLocation" />
- </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="执行终端">
- <div class="select-div">
- <el-select
- class="select-item"
- v-model="selectedExcutingMachine"
- placeholder="选择执行终端"
- >
- <el-option
- v-for="item in excutingMachinesList"
- :key="item.id"
- :label="item.instrumentName"
- :value="item"
- />
- </el-select>
- <!-- <el-button class="test-min-btn" type="primary">-->
- <!-- <svg-icon icon-class="refresh1" size="18" />-->
- <!-- </el-button>-->
- </div>
- </el-form-item>
- </el-form>
- <div>
- <!-- <svg-icon icon-class="gougou" class="svg-success" />-->
- <span>{{ selectedExcutingMachine?.ip }}</span>
- </div>
- <div class="csyq-tit">
- <span>测试仪器</span>
- <!-- <el-button class="test-min-btn" type="primary">-->
- <!-- <svg-icon icon-class="project-config" size="18" />-->
- <!-- </el-button>-->
- </div>
- <el-scrollbar class="content-B-height-2">
- <div class="csyq-list">
- <div
- v-for="(item, index) in testingMachines"
- :key="index"
- class="csyq-item"
- >
- <div>
- <span class="item-icon">
- <svg-icon
- v-if="item.deviceState == '1'"
- icon-class="gougou"
- class="svg-success"
- />
- <svg-icon v-else icon-class="chacha" class="svg-error" />
- </span>
- <span>{{ item.configName }}</span>
- </div>
- <div>{{ item.configIp }}</div>
- </div>
- </div>
- </el-scrollbar>
- </div>
- <div class="content-B-3">
- <titHeader icon-class="zxgcrz" tit="执行过程日志" />
- <el-scrollbar class="content-B-height-3">
- <div class="content-log">
- <span v-for="(item, index) in logList" :key="index">{{
- item?.label
- }}</span>
- </div>
- </el-scrollbar>
- </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>
- <el-scrollbar class="content-B-height-4">
- <div v-for="(proName, index) in Object.keys(testingWSData)">
- <div class="cssj-tit">项目名称: {{ proName }}</div>
- <div
- v-for="(data, index) in testingWSData[proName]"
- :key="index"
- class="cssj-row-flex"
- >
- <span>{{ index }}</span>
- <span>{{ data?.dataItem }}</span>
- <span>{{ data?.dataContent }}</span>
- </div>
- </div>
- </el-scrollbar>
- </div>
- </div>
- <div class="content-C">
- <div class="left">
- <div class="test-btn progress" @click="configDrawerVisible = true">
- <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" @click="startToRunTest">-->
- <!-- <svg-icon icon-class="start-test" />-->
- <!-- 开始测试-->
- <!-- </div>-->
- <el-button
- type="primary"
- class="test-btn progress"
- @click="startToRunTest"
- :loading="isTesting"
- >
- <template #icon>
- <svg-icon icon-class="start-test" />
- </template>
- 开始测试
- </el-button>
- <div class="test-btn error" @click="stopTesting">
- <svg-icon icon-class="stop-test" />
- 停止测试
- </div>
- </div>
- </div>
- <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>
- <el-drawer
- v-model="configDrawerVisible"
- :with-header="false"
- :append-to-body="true"
- :destroy-on-close="true"
- size="800"
- direction="ltr"
- >
- <ConfigDataAndDevice
- v-model:devices-data="testingMachines"
- v-model:data-list="excutingGlobalData"
- @close="configDrawerVisible = false"
- />
- </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: 25px;
- height: 30px;
- 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-normal {
- background-color: $hj-white-1;
- }
- .svg-success {
- color: $color-success;
- }
- .svg-error {
- color: $color-error;
- }
- .svg-progress {
- color: $color-progress;
- }
- .bg-normal {
- background-color: $hj-white-1;
- }
- .bg-error {
- background-color: $color-error;
- }
- .bg-success {
- background-color: $color-success;
- }
- .bg-progress {
- background-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);
- }
- .name {
- font-weight: bold;
- font-size: var(--hj-fs-14);
- }
- }
- }
- }
- .content-B {
- width: 100%;
- //min-height: 300px;
- height: calc(100vh - $main-header-height - 300px - 64px);
- background-color: $hj-white-1;
- //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);
- }
- }
- }
- .content-B-height-2 {
- height: calc(100vh - $main-header-height - 300px - 64px - 228px);
- }
- .content-B-height-3 {
- height: calc(100vh - $main-header-height - 300px - 64px - 90px);
- }
- .content-B-height-4 {
- height: calc(100vh - $main-header-height - 300px - 64px - 120px);
- }
- </style>
|