123456789101112131415161718192021222324252627282930313233 |
- <template>
- <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> -->
- </div>
- </base-form>
- </template>
- <script>
- export default {
- props: {
- listLoading: Boolean
- },
- inject: ['parentData'],
- data() {
- return {
- searchData: [
- { label: '楼盘名称', key: 'estate_id', type: 'selectRemote', changeHandle: this.ltValHandle,
- remoteParams: { skey: 'estate_name', api: `house.admestatelist`, opKey: 'estate_name', opVal: 'id' },
- },
- { label: '备注', key: 'remark' },
- ]
- }
- },
- methods: {
- searchHandle() {
- const oldform = this.$refs.ruleForm.baseForm
- const newForm = { ...oldform }
- this.$emit('change', newForm)
- }
- }
- }
- </script>
|