update 实现添加房屋编码

This commit is contained in:
2021-05-19 23:15:22 +08:00
parent 3aff5a4413
commit 9bd6446a76
21 changed files with 885 additions and 113 deletions

View File

@@ -19,6 +19,9 @@ export default {
type: Array,
require: true,
},
moreQuery: {
type: Function
}
},
data() {
@@ -203,10 +206,13 @@ export default {
<a-form-model layout="inline" {...{ on: queryOn }}>
{this.$scopedSlots.query()}
<a-form-model-item>
<a-button-group>
<a-button-group class="mr-xs">
<a-button onClick={this.onQuery} html-type="submit" type="primary">查询</a-button>
<a-button onClick={this.onResetQuery}>重置</a-button>
</a-button-group>
{
this.moreQuery && <a-button onClick={this.moreQuery}>更多查询条件</a-button>
}
</a-form-model-item>
</a-form-model>
</div>