Browse Source

样式调整

java8
han\hanst 1 month ago
parent
commit
60d95c6622
  1. 29
      src/views/modules/ecss/components/PackingDetailTab.vue

29
src/views/modules/ecss/components/PackingDetailTab.vue

@ -63,11 +63,10 @@
label="操作" label="操作"
width="120" width="120"
align="center" align="center"
fixed="right"
v-if="showActions">
fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<a type="text" size="small" @click="handleEditDetail(scope.row, props.row)">修改</a>
<a type="text" size="small" @click="handleDeleteDetail(scope.row, props.row)">删除</a>
<a type="text" size="small" v-if="showActions" @click="handleEditDetail(scope.row, props.row)">修改</a>
<a type="text" size="small" v-if="showActions" @click="handleDeleteDetail(scope.row, props.row)">删除</a>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -103,11 +102,10 @@
label="操作" label="操作"
width="120" width="120"
align="center" align="center"
fixed="right"
v-if="showActions">
fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<a type="text" size="small" @click="handleEditBox(scope.row)">修改</a>
<a type="text" size="small" @click="handleDeleteBox(scope.row)">删除</a>
<a type="text" size="small" v-if="showActions" @click="handleEditBox(scope.row)">修改</a>
<a type="text" size="small" v-if="showActions" @click="handleDeleteBox(scope.row)">删除</a>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -358,7 +356,7 @@
<el-dialog <el-dialog
title="调整实际总毛重" title="调整实际总毛重"
:visible.sync="adjustWeightDialogVisible" :visible.sync="adjustWeightDialogVisible"
width="600px"
width="450px"
:close-on-click-modal="false"> :close-on-click-modal="false">
<el-form :model="adjustWeightForm" label-width="250px"> <el-form :model="adjustWeightForm" label-width="250px">
@ -378,12 +376,11 @@
<el-input <el-input
ref="actualWeightInput" ref="actualWeightInput"
v-model="adjustWeightForm.actualGrossWeight" v-model="adjustWeightForm.actualGrossWeight"
placeholder="请输入实际称重的总毛重"
type="number" @keyup.enter.native="submitAdjustWeight()"
size="medium"
placeholder="请输入实际称重的总毛重(KG)"
@keyup.enter.native="submitAdjustWeight()"
size="large"
clearable clearable
autofocus> autofocus>
<template slot="append">KG</template>
</el-input> </el-input>
<div style="font-size: 12px; color: #909399; margin-top: 5px; line-height: 1.5;"> <div style="font-size: 12px; color: #909399; margin-top: 5px; line-height: 1.5;">
输入的总毛重不含托盘重量 输入的总毛重不含托盘重量
@ -1929,7 +1926,7 @@ export default {
} }
/deep/ .expand-detail-table .el-table__header th { /deep/ .expand-detail-table .el-table__header th {
background: #eef7f0;
background: #e6e8eb;
color: #333; color: #333;
font-weight: 500; font-weight: 500;
border-bottom: 2px solid #e9ecef; border-bottom: 2px solid #e9ecef;
@ -2182,7 +2179,7 @@ export default {
/* 输入框高亮 */ /* 输入框高亮 */
.input-highlight /deep/ .el-input__inner { .input-highlight /deep/ .el-input__inner {
height: 50px; height: 50px;
font-size: 18px;
font-size: 12px;
font-weight: 600; font-weight: 600;
border: 2px solid #409eff; border: 2px solid #409eff;
font-family: 'Courier New', monospace; font-family: 'Courier New', monospace;
@ -2204,7 +2201,7 @@ export default {
} }
.input-highlight /deep/ .el-form-item__label { .input-highlight /deep/ .el-form-item__label {
font-size: 15px;
font-size: 12px;
font-weight: 600; font-weight: 600;
color: #303133; color: #303133;
} }

Loading…
Cancel
Save