|
@@ -2,7 +2,7 @@
|
|
|
<base-form slot="content" ref="ruleForm" :data="searchData">
|
|
|
<div slot="footer">
|
|
|
<el-button :loading="listLoading" icon="el-icon-search" class="xl-form-btn bgc1" @click="searchHandle">查询</el-button>
|
|
|
- <!-- <el-button :loading="listLoading" icon="el-icon-document" class="xl-form-btn bgc2" @click="toExportExcel">导出{{ this.$route.meta.title }}信息</el-button> -->
|
|
|
+ <el-button :loading="listLoading" icon="el-icon-document" class="xl-form-btn bgc2" @click="toExportExcel">导出</el-button>
|
|
|
</div>
|
|
|
</base-form>
|
|
|
</template>
|
|
@@ -18,6 +18,7 @@ export default {
|
|
|
{ label: '意向楼盘', key: 'estate_id', type: 'selectRemote',
|
|
|
remoteParams: { skey: 'estate_name', api: `house.admestatelist`, opKey: 'estate_name', opVal: 'id' }
|
|
|
},
|
|
|
+ { label: '登记时间', label2: '登记开始时间', label3: '登记结束时间', key: 'startEndTime', type: 'datePicker'},
|
|
|
]
|
|
|
}
|
|
|
},
|
|
@@ -25,7 +26,26 @@ export default {
|
|
|
searchHandle() {
|
|
|
const oldform = this.$refs.ruleForm.baseForm
|
|
|
const newForm = { ...oldform }
|
|
|
+ if (newForm.startEndTime) {
|
|
|
+ newForm.start_at = newForm.startEndTime[0]
|
|
|
+ newForm.end_at = newForm.startEndTime[1]
|
|
|
+ delete newForm.startEndTime
|
|
|
+ }
|
|
|
this.$emit('change', newForm)
|
|
|
+ },
|
|
|
+ toExportExcel () {
|
|
|
+ const oldform = this.$refs.ruleForm.baseForm
|
|
|
+ const newForm = { ...oldform }
|
|
|
+ if (newForm.startEndTime) {
|
|
|
+ newForm.start_at = newForm.startEndTime[0]
|
|
|
+ newForm.end_at = newForm.startEndTime[1]
|
|
|
+ delete newForm.startEndTime
|
|
|
+ } else {
|
|
|
+ this.$msgw('请选择导出的时间范围')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ const token = window.sessionStorage.getItem('fp_token')
|
|
|
+ window.open(`https://api.honglouplus.com/adm/plan/export?token=${encodeURIComponent(token)}&start_at=${newForm.start_at}&end_at=${newForm.end_at}`)
|
|
|
}
|
|
|
}
|
|
|
}
|