|
@@ -1,7 +1,7 @@
|
|
|
<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-search" class="xl-form-btn bgc1" @click="searchHandle">查询:{{name}}</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>
|
|
@@ -18,6 +18,11 @@ export default {
|
|
|
searchData: []
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ name () {
|
|
|
+ return this.parentData.$route.query.name || ''
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted () {
|
|
|
this.getDef()
|
|
|
},
|