Compare commits
No commits in common. "0a8d75d077522d3a3f8017b7e9a546fc335a43b0" and "fd998f1b413a330425aa1c232fbca3384c4f73de" have entirely different histories.
0a8d75d077
...
fd998f1b41
|
|
@ -16,7 +16,6 @@ export const dialogConfig = {
|
|||
{ t_width: '', t_props: 'typeName', t_label: '设备类型' },
|
||||
{ t_width: '', t_props: 'typeModelName', t_label: '规格型号' },
|
||||
{ t_width: '', t_props: 'maCode', t_label: '设备编码' },
|
||||
{ t_width: '', t_props: 'num', t_label: '设备数量' },
|
||||
{ t_width: '', t_props: 'modelName', t_label: '入库人' },
|
||||
{ t_width: '', t_props: 'createDate', t_label: '入库日期' },
|
||||
],
|
||||
|
|
|
|||
|
|
@ -764,11 +764,12 @@
|
|||
@closeDialogOuter="closeDialogOuter"
|
||||
>
|
||||
<template slot="outerContent">
|
||||
<TableMode
|
||||
:config="dialogConfig"
|
||||
:sendParams="sendParams"
|
||||
:sendApi="getInventoryWarehousingApi"
|
||||
/>
|
||||
<el-table data="detailsList">
|
||||
<el-table-column></el-table-column>
|
||||
<el-table-column></el-table-column>
|
||||
<el-table-column></el-table-column>
|
||||
<el-table-column></el-table-column>
|
||||
</el-table>
|
||||
</template>
|
||||
</DialogModel>
|
||||
</div>
|
||||
|
|
@ -947,6 +948,7 @@ export default {
|
|||
dialogConfig,
|
||||
getInventoryWarehousingApi,
|
||||
sendParams: {},
|
||||
detailsList: [],
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
|
@ -1482,7 +1484,12 @@ export default {
|
|||
/* 查看详情 */
|
||||
async queryDetails(row) {
|
||||
this.sendParams.kindName = row.kindName
|
||||
this.dialogConfig.outerVisible = true
|
||||
const { data: res } = await getInventoryWarehousingApi(
|
||||
this.sendParams,
|
||||
)
|
||||
this.detailsList = res.rows
|
||||
console.log(res, '详情--')
|
||||
// this.dialogConfig.outerVisible = true
|
||||
},
|
||||
|
||||
/* 外层弹框关闭 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue