This commit is contained in:
bb_pan 2026-01-04 20:23:54 +08:00
parent 2edeb6fc20
commit b679498542
11 changed files with 2145 additions and 2276 deletions

View File

@ -70,7 +70,7 @@ export const constantRoutes = [
]
},
/* {
{
path: '',
component: Layout,
redirect: 'index1',
@ -83,7 +83,7 @@ export const constantRoutes = [
},
]
}, */
},
{
path: '/qrCode/qrCodePage',
component: () => import('@/views/qrCode/qrCode'),

View File

@ -71,7 +71,7 @@
<el-card class="content-box">
<el-row :gutter="10" class="mb8" justify="end">
<el-col :span="4">
<span style="font-size: 20px; font-weight: 800">自用申请列表</span>
<span style="font-size: 20px; font-weight: 800">出库申请列表</span>
</el-col>
<el-col :span="20" style="display: flex; justify-content: flex-end">
<el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAdd">新建申请</el-button>

View File

@ -35,7 +35,7 @@
<el-card>
<el-row :gutter="10" class="mb8" justify="end">
<el-col :span="4">
<span style="font-size: 20px; font-weight: 800">自用审核列表</span>
<span style="font-size: 20px; font-weight: 800">出库审核列表</span>
</el-col>
</el-row>

View File

@ -69,7 +69,7 @@
<el-card class="content-box">
<el-row :gutter="10" class="mb8" justify="end">
<el-col :span="4">
<span style="font-size: 20px; font-weight: 800">自用审核列表</span>
<span style="font-size: 20px; font-weight: 800">出库审核列表</span>
</el-col>
<el-col :span="20" style="display: flex; justify-content: flex-end; gap: 10px">
<el-button

View File

@ -116,7 +116,7 @@
<el-row :gutter="10" class="mb8" justify="end">
<el-col :span="4">
<span style="font-size: 20px; font-weight: 800">自用出库列表</span>
<span style="font-size: 20px; font-weight: 800">出库执行列表</span>
</el-col>
<el-col v-if="routerParams.isView" :span="20" style="display: flex; justify-content: flex-end">
<el-button type="primary" :disabled="queryParams.taskStatus =='3'" @click="handleOutAll">全部出库</el-button>

View File

@ -50,7 +50,7 @@
<el-card class="content-box">
<el-row :gutter="10" class="mb8" justify="end">
<el-col :span="4">
<span style="font-size: 20px; font-weight: 800">自用出库列表</span>
<span style="font-size: 20px; font-weight: 800">出库执行列表</span>
</el-col>
</el-row>
<el-table

File diff suppressed because one or more lines are too long

View File

@ -209,10 +209,10 @@ export default {
},
label: {
normal: {
show: false,
show: true,
fontSize: 12,
fontWeight: 500,
color: 'rgba(255,255,255,0.5)',
color: 'rgba(255,255,255,0.8)',
},
emphasis: {
show: true,

View File

@ -9,7 +9,7 @@
<span></span>
</div>
<div class="content-view">
<div >
<div class="table-container">
<div class="tableHeader">
<div class="header" style="width: 5%">序号</div>
<div class="header" style="width: 35%">工序</div>
@ -162,11 +162,12 @@ export default {
.tableHeader {
width: 100%;
height: 15%;
background-color: #082d6e;
opacity: 0.8;
font-size: 10px;
background-image: url('../../../../../assets/cityScreen/tableHeader.png');
background-size: 100% 100%;
font-size: 11px;
display: flex;
align-items: center;
font-weight: 800;
}
.tableBox {
@ -200,7 +201,7 @@ export default {
}
.header {
color: #ccc;
color: #72b1f1;
padding: 4px 0;
width: 25%;
height: 100%;
@ -208,7 +209,7 @@ export default {
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-size: 11px;
}
::-webkit-scrollbar {

View File

@ -10,25 +10,25 @@
</div>
<div class="content-view">
<div >
<div class="table-container">
<div class="tableHeader">
<div class="header" style="width: 5%">序号</div>
<div class="header" style="width: 30%">工序</div>
<div class="header" style="width: 25%">设备</div>
<div class="header" style="width: 40%">预警情况</div>
<div class="header" style="width: 35%">工序</div>
<div class="header" style="width: 30%">设备</div>
<div class="header" style="width: 30%">预警情况</div>
</div>
<div class="tableBox">
<div class="tableTr" v-for="(item, index) in tableList" :key="index">
<div class="tableTd" style="width: 5%">
{{ index + 1 }}
</div>
<div class="tableTd" style="width: 30%">
<div class="tableTd" style="width: 35%">
{{ item.procedureName }}
</div>
<div class="tableTd" style="width: 25%">
<div class="tableTd" style="width: 30%">
{{ item.deviceName }}
</div>
<div class="tableTd" style="width: 40%; color: #e3c54e">
<div class="tableTd" style="width: 30%; color: #e3c54e">
{{ item.situation }}
</div>
</div>
@ -163,9 +163,10 @@ export default {
.tableHeader {
width: 100%;
height: 15%;
background-color: #082d6e;
opacity: 0.8;
font-size: 10px;
background-image: url('../../../../../assets/cityScreen/tableHeader.png');
background-size: 100% 100%;
font-size: 13px;
font-weight: 800;
display: flex;
align-items: center;
}
@ -206,7 +207,7 @@ export default {
}
.header {
color: #ccc;
color: #72b1f1;
padding: 4px 0;
width: 25%;
height: 100%;
@ -214,7 +215,7 @@ export default {
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-size: 11px;
}
// @media screen and (min-width: 1080px) {

View File

@ -207,7 +207,7 @@ export default {
}
.right_3 {
height: 306px;
height: 270px;
grid-row: 7 / 12;
display: flex;
}