|
@@ -237,32 +237,32 @@
|
|
|
<el-button type="primary" @click="save()">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
-
|
|
|
- <el-table ref="table" v-loading="loading" :data="warehousebillsList" @selection-change="handleSelectionChange"
|
|
|
+ <el-table ref="table" style="width: 100%;" v-loading="loading" :data="warehousebillsList" @selection-change="handleSelectionChange"
|
|
|
show-summary :summary-method="getSum" :height="tableHeight" @expand-change="expandChange">
|
|
|
<el-table-column type="selection" fixed align="center" width="58" />
|
|
|
+
|
|
|
<el-table-column type="expand" fixed="left">
|
|
|
<template slot-scope="props">
|
|
|
- <el-table :data="props.row.dataList" v-loading="props.row.loading">
|
|
|
- <el-table-column type="index" label="行号" width="50" align="center" fixed />
|
|
|
+ <el-table :data="props.row.dataList" v-loading="props.row.loading" style="width: 1500px;margin-left: 200px">
|
|
|
+ <el-table-column type="index" label="行号" width="50" align="center" />
|
|
|
<el-table-column label="状态" prop="fBillstatus" align="center" show-overflow-tooltip width="100">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.fBillstatus | fBillstatusFormat }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="入库日期" prop="fBsdate" align="center" show-overflow-tooltip width="100">
|
|
|
+ <el-table-column label="入库日期" prop="fBsdate" align="center" show-overflow-tooltip width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="品名" prop="fGoodsid" align="center" show-overflow-tooltip width="100">
|
|
|
+ <el-table-column label="品名" prop="fGoodsid" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.fGoodsid | goodsFormat(goodsOptions) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="货物属性" prop="fBusinessType" align="center" show-overflow-tooltip width="100">
|
|
|
+ <el-table-column label="货物属性" prop="fBusinessType" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.fBusinessType | fStorageTypeFormat(fStorageTypeOptions) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="属性详情" prop="fMarks" align="center" show-overflow-tooltip width="100">
|
|
|
+ <el-table-column label="属性详情" prop="fMarks" align="center" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="入库件数" prop="fQty" align="center" show-overflow-tooltip width="100">
|
|
|
</el-table-column>
|
|
@@ -270,7 +270,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="入库净重(kg)" prop="fNetweight" align="center" show-overflow-tooltip width="150">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="箱号" prop="fCntrno" align="center" show-overflow-tooltip width="180">
|
|
|
+ <el-table-column label="箱号" prop="fCntrno" align="center" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</template>
|
|
@@ -1109,4 +1109,25 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+.table {
|
|
|
+ border-collapse: collapse;
|
|
|
+ border-spacing: 0;
|
|
|
+ background-color: transparent;
|
|
|
+ display: table;
|
|
|
+ width: 100%;
|
|
|
+ max-width: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+
|
|
|
+.table td {
|
|
|
+ text-align: center;
|
|
|
+ vertical-align: middle;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #000000;
|
|
|
+ padding: 8px 12px;
|
|
|
+}
|
|
|
+
|
|
|
+.column {
|
|
|
+ border: 1px solid #000;
|
|
|
+}
|
|
|
</style>
|