|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="outgoingManagement_index">
|
|
|
+ <div id="outgoingManagement_index">
|
|
|
<el-card shadow="never">
|
|
|
<el-form :model="formData" ref="formName" label-width="80px">
|
|
|
<el-row :gutter="10">
|
|
|
@@ -130,8 +130,10 @@
|
|
|
<ele-pro-table
|
|
|
ref="table"
|
|
|
:columns="columns"
|
|
|
+ height="calc(100vh-300px)"
|
|
|
:datasource="datasource"
|
|
|
@cell-click="cellClick"
|
|
|
+ :pageSize="20"
|
|
|
cache-key="systemRoleTable"
|
|
|
>
|
|
|
<!-- 表头工具栏 -->
|
|
|
@@ -329,7 +331,6 @@
|
|
|
width: 50,
|
|
|
align: 'center'
|
|
|
},
|
|
|
-
|
|
|
{
|
|
|
prop: 'bizNo',
|
|
|
label: '单号',
|
|
|
@@ -344,7 +345,7 @@
|
|
|
label: '出库场景',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- width: 150
|
|
|
+ width: 90
|
|
|
},
|
|
|
{
|
|
|
prop: 'assetType',
|
|
|
@@ -352,7 +353,7 @@
|
|
|
label: '物品类型',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- width: 150
|
|
|
+ width: 100
|
|
|
},
|
|
|
{
|
|
|
prop: 'categoryNames',
|
|
|
@@ -365,8 +366,7 @@
|
|
|
prop: 'categoryCodes',
|
|
|
label: '物品编码',
|
|
|
align: 'center',
|
|
|
- showOverflowTooltip: true,
|
|
|
- width: 150
|
|
|
+ showOverflowTooltip: true
|
|
|
},
|
|
|
// {
|
|
|
// prop: 'verifyStatus',
|
|
|
@@ -391,7 +391,7 @@
|
|
|
align: 'center',
|
|
|
slot: 'fromUser',
|
|
|
showOverflowTooltip: true,
|
|
|
- width: 200
|
|
|
+ width: 100
|
|
|
},
|
|
|
{
|
|
|
prop: 'createTime',
|
|
|
@@ -419,7 +419,7 @@
|
|
|
{
|
|
|
columnKey: 'action',
|
|
|
label: '操作',
|
|
|
- width: 300,
|
|
|
+ width: 150,
|
|
|
align: 'center',
|
|
|
slot: 'action',
|
|
|
showOverflowTooltip: true
|
|
|
@@ -592,13 +592,14 @@
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style lang="scss">
|
|
|
- .outgoingManagement_index {
|
|
|
+<style lang="scss" scoped>
|
|
|
+ #outgoingManagement_index {
|
|
|
height: 100%;
|
|
|
width: 100%;
|
|
|
padding: 10px;
|
|
|
box-sizing: border-box;
|
|
|
- .el-card {
|
|
|
+ // element-ui样式穿透
|
|
|
+ :deep(.el-card) {
|
|
|
height: 100%;
|
|
|
.el-card__body {
|
|
|
height: 100%;
|
|
|
@@ -610,14 +611,18 @@
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
.el-table {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- .el-table__body-wrapper {
|
|
|
- flex: 1;
|
|
|
- }
|
|
|
+ flex: 1;
|
|
|
+ // display: flex;
|
|
|
+ // flex-direction: column;
|
|
|
+ // .el-table__body-wrapper {
|
|
|
+ // flex: 1;
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .el-form-item {
|
|
|
+ margin-bottom: 5px !important;
|
|
|
+ }
|
|
|
}
|
|
|
.w100 {
|
|
|
width: 100% !important;
|