12
0

Merge pull request 'zjl' (#4) from zjl into master

Reviewed-on: #4
Este cometimento está contido em:
高天泽 2022-11-08 16:48:09 +08:00
ascendente 2035643ed9 cdb93d2b8c
cometimento 95a2f6c1a6
3 ficheiros modificados com 8 adições e 7 eliminações

Ver ficheiro

@ -15,11 +15,11 @@
<el-button <el-button
type="text" type="text"
class="title-button" class="title-button"
:style="{ right: 33 * beilv + 'px', top: 37 * beilv + 'px' }" :style="{ right: 0, top: 37 * beilv + 'px' }"
@click="changeFullScreen" @click="changeFullScreen"
> >
<svg-icon v-if="isFullScreen" icon-class="unFullScreenView" /> <svg-icon v-if="isFullScreen" icon-class="unFullScreenView" :style="{fontSize: 33 * beilv + 'px'}" />
<svg-icon v-else icon-class="fullScreenView" /> <svg-icon v-else icon-class="fullScreenView" :style="{fontSize: 33 * beilv + 'px'}" />
</el-button> </el-button>
</el-row> </el-row>
<el-row class="container-main" :style="{ padding: '0 ' + 16 * beilv + 'px' }" :gutter="16 * beilv"> <el-row class="container-main" :style="{ padding: '0 ' + 16 * beilv + 'px' }" :gutter="16 * beilv">

Ver ficheiro

@ -15,7 +15,7 @@
<el-button <el-button
type="text" type="text"
class="title-button" class="title-button"
:style="{ right: 33 * beilv + 'px', top: 37 * beilv + 'px' }" :style="{ right: 0, top: 37 * beilv + 'px' }"
@click="changeFullScreen" @click="changeFullScreen"
> >
<svg-icon v-if="isFullScreen" icon-class="unFullScreenView" :style="{fontSize: 33 * beilv + 'px'}" /> <svg-icon v-if="isFullScreen" icon-class="unFullScreenView" :style="{fontSize: 33 * beilv + 'px'}" />

Ver ficheiro

@ -1,7 +1,8 @@
<template> <template>
<div class="order-box" :style="{ padding: '0 ' + 16 * beilv + 'px', fontSize: 14 * beilv + 'px'}"> <div class="order-box" :style="{ padding: '0 ' + 16 * beilv + 'px', fontSize: 14 * beilv + 'px'}">
<!-- 小块 --> <!-- 小块 -->
<div v-for="(item,index) in orderMsg" :key="index" :style="{ padding: 10 * beilv + 'px' + ' 20px ' + 16 * beilv + 'px' + ' 16px'}" class="box"> <div v-for="(item,index) in orderMsg" :key="index" :style="{ padding: 10 * beilv + 'px ' + 20 * beilv + 'px ' + 16 * beilv + 'px ' + 16 * beilv
+ 'px', height: 168 * beilv + 'px'}" class="box">
<p class="line1"> <p class="line1">
<span>工单编号<span class="light-color">{{ item.code }}</span></span> <span>工单编号<span class="light-color">{{ item.code }}</span></span>
<span class="fr"> <span class="fr">
@ -13,7 +14,7 @@
<span>产品名称<span class="light-color">{{ item.name }}</span></span> <span>产品名称<span class="light-color">{{ item.name }}</span></span>
<span class="fr"> <span class="fr">
产线 产线
<span class="light-color" style="margin-right: 25px">{{ item.line }}</span> <span class="light-color" :style="{marginRight: 25 * beilv + 'px'}">{{ item.line }}</span>
</span> </span>
</p> </p>
<p :style="{ paddingLeft: 15 * beilv + 'px'}"> <p :style="{ paddingLeft: 15 * beilv + 'px'}">
@ -55,11 +56,11 @@ export default {
justify-content: space-between; justify-content: space-between;
.box { .box {
width: 49.5%; width: 49.5%;
height: 49.5%;
margin-bottom: 8px; margin-bottom: 8px;
background-image: url('../../../../assets/img/cockpit/module-back.png'); background-image: url('../../../../assets/img/cockpit/module-back.png');
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
overflow: auto;
.light-color { .light-color {
opacity: 0.5; opacity: 0.5;
} }