|
|
@@ -2,7 +2,7 @@
|
|
|
<div>
|
|
|
<tableTemplate ref="orderRow" :layout="tablecols" :param="param" height="calc(100vh - 305px)" fixedName="operation" :width="true" :custom="true">
|
|
|
<template v-slot:customcol="scope">
|
|
|
- <p >{{scope.column.data[scope.column.columnname]?scope.column.data[scope.column.columnname]:'--'}}</p>
|
|
|
+ <p >{{scope.column.data[scope.column.columnname] || scope.column.columnname === 'operation'?scope.column.data[scope.column.columnname]:'--'}}</p>
|
|
|
</template>
|
|
|
</tableTemplate>
|
|
|
</div>
|
|
|
@@ -18,7 +18,7 @@ export default {
|
|
|
param:{
|
|
|
"id": 20240319154804,
|
|
|
"content": {
|
|
|
- "sa_overdueadjustid":1,
|
|
|
+ "sa_overdueadjustid":'',
|
|
|
"pageNumber": 1,
|
|
|
"pageSize": 20,
|
|
|
"where": {
|
|
|
@@ -30,6 +30,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+ this.param.content.sa_overdueadjustid = this.$route.query.id
|
|
|
this.$refs.orderRow.listData()
|
|
|
},
|
|
|
created() {
|