shish 1 year ago
parent
commit
895607f041
1 changed files with 4 additions and 4 deletions
  1. 4 4
      ghs/src/views/member/custom-debt-list.vue

+ 4 - 4
ghs/src/views/member/custom-debt-list.vue

@@ -14,7 +14,7 @@
 
 			<template #table-column-payTime="{scope}">
 				<span v-if="scope.row.payTime!='0000-00-00 00:00:00' && scope.row.payTime.substr(5,5)!=scope.row.addTime.substr(5,5)">
-					{{ item.payTime }}
+					{{ scope.row.payTime }}
 				</span>
 				<span v-else>-</span>
 			</template>
@@ -148,7 +148,7 @@ export default {
 							prop: 'event',
 							label: '事项',
 							align: 'center',
-							width: 240
+							width: 260
 						},
 						{
 							prop: 'amount',
@@ -166,7 +166,7 @@ export default {
 							prop: 'remark',
 							label: '备注',
 							align: 'center',
-							width: 240
+							width: 210
 						}
 					],
 					op: {
@@ -205,7 +205,7 @@ export default {
       		this.app.refresh({searchTime:this.searchTime,startTime:this.startTime,endTime:this.endTime,customId:this.customId})
     	},
 		exportData(){
-			this.$service.customDebtChange.getChangeList({searchTime:this.searchTime,startTime:this.startTime,endTime:this.endTime,customId:this.customId,pageSize:9999999,export:1}).then(res => {
+			this.$service.customDebtChange.getList({searchTime:this.searchTime,startTime:this.startTime,endTime:this.endTime,customId:this.customId,pageSize:9999999,export:1}).then(res => {
 				if(res.file){
 					window.location.href = res.file
 				}