...
|
...
|
@@ -51,36 +51,34 @@ |
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :gutter="0" class="toolbar toobar_analysis" style="margin-top: -25px;height: 100px">
|
|
|
<el-col :span="7" >
|
|
|
<div class="analysis_title">总单数:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="total" readonly style="width: 100px">
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="1">
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
</el-col>
|
|
|
<el-col :span="7">
|
|
|
<div class="analysis_title">总件数:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="pcsSum" readonly style="width: 100px">
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="1">
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
</el-col>
|
|
|
<el-col :span="7">
|
|
|
<div class="analysis_title">总重量:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="weightSum" readonly style="font-size:12px;color:cornflowerblue;width: 100px">
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-row class="toolbar" style="height: 70px">
|
|
|
<el-col :span="7" >
|
|
|
<div class="analysis_title">总单数:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="total" readonly>
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="1">
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
</el-col>
|
|
|
<el-col :span="7">
|
|
|
<div class="analysis_title">总件数:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="pcsSum" readonly>
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="1">
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
</el-col>
|
|
|
<el-col :span="7">
|
|
|
<div class="analysis_title">总重量:</div>
|
|
|
<div class="analysis_text">
|
|
|
<el-input v-model="weightSum" readonly>
|
|
|
</el-input>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 列表区域-->
|
|
|
<el-row>
|
...
|
...
|
@@ -974,6 +972,12 @@ |
|
|
}
|
|
|
</style>
|
|
|
<style>
|
|
|
.el-input--mini .el-input__inner{
|
|
|
background-color: rgba(255,255,255,0.1);
|
|
|
border: 0px;
|
|
|
font-size: 14px;
|
|
|
color: rgb(64,158,255);
|
|
|
}
|
|
|
.my-text-area .el-textarea__inner{
|
|
|
min-height: 28px;
|
|
|
height: 28px;
|
...
|
...
|
|