style:申请查询记录
Showing
2 changed files
with
7 additions
and
3 deletions
1 | <template> | 1 | <template> |
2 | <dialogBox title="家庭房产查询" @closeDialog="closeDialog" width="80%" :isButton="false" v-model="value"> | 2 | <dialogBox title="家庭房产查询" @closeDialog="closeDialog" @submitForm="submitForm" width="80%" :isButton="false" |
3 | v-model="value"> | ||
3 | <b class="title">申请信息</b> | 4 | <b class="title">申请信息</b> |
4 | <lb-table :column="tableData.columns" :data="tableData.data" :maxHeight="200" heightNumSetting :pagination="false"> | 5 | <lb-table :column="tableData.columns" :data="tableData.data" :maxHeight="200" heightNumSetting :pagination="false"> |
5 | </lb-table> | 6 | </lb-table> |
... | @@ -204,6 +205,7 @@ export default { | ... | @@ -204,6 +205,7 @@ export default { |
204 | closeDialog () { | 205 | closeDialog () { |
205 | this.$emit('input', false) | 206 | this.$emit('input', false) |
206 | }, | 207 | }, |
208 | submitForm () { this.$emit('input', false) }, | ||
207 | handleAdd () { | 209 | handleAdd () { |
208 | this.tableData.data.push({}) | 210 | this.tableData.data.push({}) |
209 | }, | 211 | }, | ... | ... |
... | @@ -23,9 +23,11 @@ class data extends filter { | ... | @@ -23,9 +23,11 @@ class data extends filter { |
23 | prop: "cxlx", | 23 | prop: "cxlx", |
24 | label: "查询类型", | 24 | label: "查询类型", |
25 | }, | 25 | }, |
26 | { | 26 | { |
27 | prop:"cxbh", | ||
28 | label: "查询编号", | 27 | label: "查询编号", |
28 | render: (h, scope) => { | ||
29 | return <el-button type="text" onClick={() => { vm.openDialog() }}>{scope.row.cxbh}</el-button> | ||
30 | } | ||
29 | }, | 31 | }, |
30 | { | 32 | { |
31 | prop: "cxsj", | 33 | prop: "cxsj", | ... | ... |
-
Please register or sign in to post a comment