|
@@ -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>
|
|
@@ -15,6 +15,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
searchData: [
|
|
|
+ { label: '土拍时间', label2: '开始时间', label3: '结束时间', key: 'startEndTime', type: 'datePicker'},
|
|
|
{ label: '地块编号', key: 'no' },
|
|
|
{ label: '用途', key: 'purpose' },
|
|
|
{ label: '区域', key: 'area_type', type: 'select', options: this.$dictData.area_type },
|
|
@@ -22,6 +23,20 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ 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/land/export?token=${encodeURIComponent(token)}&start_at=${newForm.start_at}&end_at=${newForm.end_at}`)
|
|
|
+ },
|
|
|
searchHandle() {
|
|
|
const oldform = this.$refs.ruleForm.baseForm
|
|
|
const newForm = { ...oldform }
|