Browse Source

2025-10-16

领料申请管理页面 材料汇总页签 操作垂直错位优化
master
fengyuan_yang 3 months ago
parent
commit
f41697ec41
  1. 28
      src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue

28
src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue

@ -276,21 +276,12 @@
</el-tab-pane>
<el-tab-pane label="材料汇总" name="sum">
<el-table
ref="sum"
:data="dataList4"
:height="height"
:height="height+20"
border
v-loading="dataListLoading"
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
v-for="(item,index) in columnList4" :key="index"
:sortable="item.columnSortable"
@ -310,10 +301,10 @@
fixed="right"
header-align="center"
align="center"
width="90"
width="100"
label="操作">
<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>
</el-table-column>
</el-table>
@ -1730,7 +1721,7 @@
tableName: "申请单材料明细表",
columnProp: "issueType",
headerAlign: "center",
align: "center",
align: "left",
columnLabel: "类型",
columnHidden: false,
columnImage: false,
@ -1738,7 +1729,7 @@
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100
columnWidth: 80
},
{
userId: this.$store.state.user.name,
@ -1748,7 +1739,7 @@
tableName: "申请单材料明细表",
columnProp: "componentPartNo",
headerAlign: "center",
align: "center",
align: "left",
columnLabel: "材料编码",
columnHidden: false,
columnImage: false,
@ -1773,7 +1764,7 @@
sortLv: 0,
status: true,
fixed: '',
columnWidth: 130
columnWidth: 200
},
{
userId: this.$store.state.user.name,
@ -2739,6 +2730,9 @@
} else {
this.dataList4 = [];
}
this.$nextTick(() => {
this.$refs.sum.doLayout(); //
});
});
}
},

Loading…
Cancel
Save