070ea789 by 任超

style:申请查询记录

1 parent 499e6c97
......@@ -85,7 +85,9 @@ export default {
},
watch: {
value (val) {
this.dialogVisible = val
this.$nextTick(() => {
this.dialogVisible = val
})
this.height && (this.scrollerHeight = this.height + 'px')
}
},
......
......@@ -85,7 +85,9 @@ export default {
},
watch: {
value (val) {
this.dialogVisible = val
this.$nextTick(() => {
this.dialogVisible = val
})
this.height && (this.scrollerHeight = this.height + 'px')
}
},
......
<template>
<div>
<el-form :model="form" boder label-width="120px">
<div class="sqcxjlInfo">
<el-form :model="form" boder label-width="130px">
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
......@@ -9,40 +9,39 @@
</div>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="查询来源:" label-width="90px">{{form.djSqcxDO.cxly}}
<el-form-item label="查询来源:" label-width="90px">{{ form.djSqcxDO.cxly }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询类型:">{{form.djSqcxDO.cxlx}}
<el-form-item label="查询类型:">{{ form.djSqcxDO.cxlx }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询人员:" label-width="90px">{{form.djSqcxDO.cxr}}
<el-form-item label="查询人员:" label-width="90px">{{ form.djSqcxDO.cxr }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询时间:">{{form.djSqcxDO.cxsj}}
<el-form-item label="查询时间:">{{ form.djSqcxDO.cxsj }}
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="查询编号:" label-width="90px">{{form.djSqcxDO.cxbh}}
<el-form-item label="查询编号:" label-width="90px">{{ form.djSqcxDO.cxbh }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询用途:" label-width="90px">{{form.djSqcxDO.cxyt}}
<el-form-item label="查询用途:" label-width="90px">{{ form.djSqcxDO.cxyt }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="与产权人的关系:">{{form.djSqcxDO.ycqrgxmc}}
<el-form-item label="与产权人的关系:">{{ form.djSqcxDO.ycqrgxmc }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="不动产权证号:">{{form.djSqcxDO.bdcqzh}}
<el-form-item label="不动产权证号:">{{ form.djSqcxDO.bdcqzh }}
</el-form-item>
</el-col>
</el-row>
......@@ -84,7 +83,7 @@
<div class="triangle"></div>
</div>
</el-col>
</el-row>
</el-row>
<el-row>
<el-col>
<lb-table :column="cxjgData.columns" :data="form.cxjgList" :maxHeight="200" heightNumSetting
......@@ -121,12 +120,12 @@ export default {
// },
props: ["formData"],
created() {
created () {
// debugger;
// alert(this.formData.sqcxBsm);
},
data() {
data () {
return {
form: {},
ruleForm: {
......@@ -153,7 +152,7 @@ export default {
};
},
mounted() {
mounted () {
sendThis(this);
var sqcxBsm = this.formData.sqcxBsm;
......@@ -176,4 +175,13 @@ export default {
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";
/deep/.el-form-item {
margin-bottom: 0 !important;
}
.sqcxjlInfo {
max-height: 85vh;
overflow-y: auto;
}
</style>
......