fix(biz): 修复采购入库单功能的多个问题
This commit is contained in:
parent
0e13702fdb
commit
d675c3ab40
@ -75,9 +75,10 @@
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 入库单信息表格 -->
|
||||
<ContentWrap class="!p-15px" style="height: calc(50vh - 60px);">
|
||||
<ContentWrap class="!p-10px">
|
||||
<div style="display: flex; flex-direction: column; height: calc(50vh - 180px);">
|
||||
<div style="flex: 1; min-height: 0; display: flex; flex-direction: column; overflow: hidden;">
|
||||
<div style="font-weight: bold; margin-bottom: 8px;">入库单信息</div>
|
||||
<div style="height: calc(100% - 40px); overflow: auto;">
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="list"
|
||||
@ -86,7 +87,8 @@
|
||||
border
|
||||
@row-click="handleRowClick"
|
||||
:highlight-current-row="true"
|
||||
style="width: 100%;"
|
||||
style="flex: 1;"
|
||||
max-height="100%"
|
||||
>
|
||||
<el-table-column label="序号" align="center" type="index" width="60px"/>
|
||||
<el-table-column label="单据类型" align="center" prop="billType" >
|
||||
@ -139,15 +141,16 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- 分页 -->
|
||||
<div style="display: flex; justify-content: flex-end; margin-top: 1px; flex-shrink: 0;">
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
style="margin-top: 8px;"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 入库物料信息表格 -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user