|
|
@ -276,21 +276,12 @@ |
|
|
</el-tab-pane> |
|
|
</el-tab-pane> |
|
|
<el-tab-pane label="材料汇总" name="sum"> |
|
|
<el-tab-pane label="材料汇总" name="sum"> |
|
|
<el-table |
|
|
<el-table |
|
|
|
|
|
ref="sum" |
|
|
:data="dataList4" |
|
|
:data="dataList4" |
|
|
:height="height" |
|
|
|
|
|
|
|
|
:height="height+20" |
|
|
border |
|
|
border |
|
|
v-loading="dataListLoading" |
|
|
v-loading="dataListLoading" |
|
|
style="width: 100%; "> |
|
|
style="width: 100%; "> |
|
|
<!-- <el-table-column--> |
|
|
|
|
|
<!-- header-align="center"--> |
|
|
|
|
|
<!-- align="center"--> |
|
|
|
|
|
<!-- width="80"--> |
|
|
|
|
|
<!-- fixed="left"--> |
|
|
|
|
|
<!-- label="操作">--> |
|
|
|
|
|
<!-- <template slot-scope="scope">--> |
|
|
|
|
|
<!-- <a type="text" size="small" @click="printLabel(scope.row)">打印标签</a>--> |
|
|
|
|
|
<!-- </template>--> |
|
|
|
|
|
<!-- </el-table-column>--> |
|
|
|
|
|
<el-table-column |
|
|
<el-table-column |
|
|
v-for="(item,index) in columnList4" :key="index" |
|
|
v-for="(item,index) in columnList4" :key="index" |
|
|
:sortable="item.columnSortable" |
|
|
:sortable="item.columnSortable" |
|
|
@ -310,10 +301,10 @@ |
|
|
fixed="right" |
|
|
fixed="right" |
|
|
header-align="center" |
|
|
header-align="center" |
|
|
align="center" |
|
|
align="center" |
|
|
width="90" |
|
|
|
|
|
|
|
|
width="100" |
|
|
label="操作"> |
|
|
label="操作"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-link style="cursor: pointer" @click="outboundDetailModal(scope.row)">出库明细</el-link> |
|
|
|
|
|
|
|
|
<el-link style="cursor: pointer;" @click="outboundDetailModal(scope.row)">出库明细</el-link> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
@ -1730,7 +1721,7 @@ |
|
|
tableName: "申请单材料明细表", |
|
|
tableName: "申请单材料明细表", |
|
|
columnProp: "issueType", |
|
|
columnProp: "issueType", |
|
|
headerAlign: "center", |
|
|
headerAlign: "center", |
|
|
align: "center", |
|
|
|
|
|
|
|
|
align: "left", |
|
|
columnLabel: "类型", |
|
|
columnLabel: "类型", |
|
|
columnHidden: false, |
|
|
columnHidden: false, |
|
|
columnImage: false, |
|
|
columnImage: false, |
|
|
@ -1738,7 +1729,7 @@ |
|
|
sortLv: 0, |
|
|
sortLv: 0, |
|
|
status: true, |
|
|
status: true, |
|
|
fixed: '', |
|
|
fixed: '', |
|
|
columnWidth: 100 |
|
|
|
|
|
|
|
|
columnWidth: 80 |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
userId: this.$store.state.user.name, |
|
|
userId: this.$store.state.user.name, |
|
|
@ -1748,7 +1739,7 @@ |
|
|
tableName: "申请单材料明细表", |
|
|
tableName: "申请单材料明细表", |
|
|
columnProp: "componentPartNo", |
|
|
columnProp: "componentPartNo", |
|
|
headerAlign: "center", |
|
|
headerAlign: "center", |
|
|
align: "center", |
|
|
|
|
|
|
|
|
align: "left", |
|
|
columnLabel: "材料编码", |
|
|
columnLabel: "材料编码", |
|
|
columnHidden: false, |
|
|
columnHidden: false, |
|
|
columnImage: false, |
|
|
columnImage: false, |
|
|
@ -1773,7 +1764,7 @@ |
|
|
sortLv: 0, |
|
|
sortLv: 0, |
|
|
status: true, |
|
|
status: true, |
|
|
fixed: '', |
|
|
fixed: '', |
|
|
columnWidth: 130 |
|
|
|
|
|
|
|
|
columnWidth: 200 |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
userId: this.$store.state.user.name, |
|
|
userId: this.$store.state.user.name, |
|
|
@ -2739,6 +2730,9 @@ |
|
|
} else { |
|
|
} else { |
|
|
this.dataList4 = []; |
|
|
this.dataList4 = []; |
|
|
} |
|
|
} |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.$refs.sum.doLayout(); // 重新计算布局 |
|
|
|
|
|
}); |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|