|
@@ -61,7 +61,7 @@
|
|
|
>
|
|
|
</el-table>
|
|
|
</li>
|
|
|
- <li>重量:</li>
|
|
|
+ <li>总重量:</li>
|
|
|
<li>{{ sitem.total_weight }}g</li>
|
|
|
<li>是否多地:</li>
|
|
|
<li>{{ sitem.is_addrs === "1" ? "多地" : "一地" }}</li>
|
|
@@ -119,7 +119,7 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
- <el-table
|
|
|
+ <el-table
|
|
|
:data="tableData"
|
|
|
border
|
|
|
stripe
|
|
@@ -225,7 +225,7 @@
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </el-table>
|
|
|
+ </el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-else>
|
|
@@ -356,7 +356,8 @@ export default {
|
|
|
this.parmValue
|
|
|
);
|
|
|
if (code === 0) {
|
|
|
- this.tableData = data;
|
|
|
+ const {list}=data
|
|
|
+ this.tableData = list;
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
@@ -388,7 +389,7 @@ export default {
|
|
|
position: absolute;
|
|
|
top: 16px;
|
|
|
left: 16px;
|
|
|
- width: 240px;
|
|
|
+ width: 220px;
|
|
|
overflow: hidden;
|
|
|
height: calc(100vh - 82px);
|
|
|
.left-main {
|
|
@@ -404,7 +405,7 @@ export default {
|
|
|
.p-right {
|
|
|
top: 16px;
|
|
|
right: 16px;
|
|
|
- width: calc(100% - 278px);
|
|
|
+ width: calc(100% - 258px);
|
|
|
height: calc(100vh - 276px);
|
|
|
overflow-y: scroll;
|
|
|
background: #fff;
|
|
@@ -431,7 +432,7 @@ export default {
|
|
|
bottom: 16px;
|
|
|
right: 16px;
|
|
|
background: #fff;
|
|
|
- width: calc(100% - 278px);
|
|
|
+ width: calc(100% - 258px);
|
|
|
height: 180px;
|
|
|
min-height: 180px;
|
|
|
overflow-y: scroll;
|
|
@@ -466,11 +467,11 @@ export default {
|
|
|
line-height: 25px;
|
|
|
|
|
|
&:nth-child(2n + 1) {
|
|
|
- width: 65px;
|
|
|
+ width: 60px;
|
|
|
text-align: right;
|
|
|
}
|
|
|
&:nth-child(2n + 2) {
|
|
|
- width: calc(100% - 65px);
|
|
|
+ width: calc(100% - 60px);
|
|
|
}
|
|
|
}
|
|
|
}
|