|
@@ -603,7 +603,7 @@ export default {
|
|
this.search.pageNum = this.currentPage
|
|
this.search.pageNum = this.currentPage
|
|
this.search.pageSize = this.pageSize
|
|
this.search.pageSize = this.pageSize
|
|
this.OutData = []
|
|
this.OutData = []
|
|
- const title = ['批次号', '选房号', '买受人', '身份证号', '选房日']
|
|
|
|
|
|
+ const title = ['批次号', '选房号', '买受人', '身份证号', '选房日', '购房状态', '意向金状态', '小区-分期', '意向房屋']
|
|
this.OutData.push(title)
|
|
this.OutData.push(title)
|
|
const temp = []
|
|
const temp = []
|
|
this.baseRequest('excelList', _this.search).then(res => {
|
|
this.baseRequest('excelList', _this.search).then(res => {
|
|
@@ -619,9 +619,14 @@ export default {
|
|
jsonArray.push(item.buyerName)
|
|
jsonArray.push(item.buyerName)
|
|
jsonArray.push(item.buyerIdentityCard)
|
|
jsonArray.push(item.buyerIdentityCard)
|
|
jsonArray.push(item.roomSelectionDate)
|
|
jsonArray.push(item.roomSelectionDate)
|
|
|
|
+ jsonArray.push(item.statusStr)
|
|
|
|
+ jsonArray.push(item.intentionalDepositStatusStr)
|
|
|
|
+ jsonArray.push(item.groupDiscName)
|
|
|
|
+ jsonArray.push(item.houseName)
|
|
_this.OutData.push(jsonArray)
|
|
_this.OutData.push(jsonArray)
|
|
})
|
|
})
|
|
- const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }]
|
|
|
|
|
|
+ const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 },
|
|
|
|
+ { wch: 15 }, { wch: 15 }, { wch: 15 }]
|
|
const fileName = '客户导出 ' + new Date().Format('yyyyMMddhhmm')
|
|
const fileName = '客户导出 ' + new Date().Format('yyyyMMddhhmm')
|
|
this.$outputXlsxFile(this.OutData, OutSize, fileName)
|
|
this.$outputXlsxFile(this.OutData, OutSize, fileName)
|
|
_this.excelFlag = false
|
|
_this.excelFlag = false
|