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