12345678910111213141516171819202122232425262728293031 |
- <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: 'remark' },
- { label: '分类', key: 'activity_type', type: 'select', options: this.$dictData.activity_type},
- ]
- }
- },
- methods: {
- searchHandle() {
- const oldform = this.$refs.ruleForm.baseForm
- const newForm = { ...oldform }
- this.$emit('change', newForm)
- }
- }
- }
- </script>
|