土地流转 宅基地管理 模糊查询
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="20">
|
||||
<el-form-item label="统一信用社会代码" prop="houseNumber">
|
||||
<el-form-item label="统一社会信用代码" prop="houseNumber">
|
||||
<el-input v-model="form.houseNumber" placeholder="请输入统一社会信用代码"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
@@ -28,7 +28,7 @@
|
||||
<ai-area-select clearable always-show :instance="instance" v-model="form.areaId" :disabled-level="disabledLevel"></ai-area-select>
|
||||
</el-form-item>
|
||||
<el-row type="flex">
|
||||
<el-col :span="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="股权证编号" prop="useCertificate">
|
||||
<el-input v-model="form.useCertificate" placeholder="请输入股权证编号"></el-input>
|
||||
</el-form-item>
|
||||
@@ -48,12 +48,6 @@
|
||||
<template #content>
|
||||
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
||||
@getList="getTableData" :col-configs="colConfigs" :dict="dict">
|
||||
<el-table-column slot="options" label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<el-button type="text" @click="toAdd(row.id)">详情</el-button>
|
||||
<el-button type="text" @click="handleDelete(row.id)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</ai-table>
|
||||
</template>
|
||||
</ai-card>
|
||||
@@ -123,6 +117,9 @@ export default {
|
||||
radioFrom: '',
|
||||
page: {current: 1, size: 10, total: 0},
|
||||
tableData: [],
|
||||
disabledLevel: 3,
|
||||
page: {current: 1, size: 10, total: 0},
|
||||
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -140,7 +137,16 @@ export default {
|
||||
fileList: [{required: true, message: '请上传图片', trigger: 'blur'}],
|
||||
}
|
||||
},
|
||||
...mapState(['user'])
|
||||
...mapState(['user']),
|
||||
colConfigs() {
|
||||
return [
|
||||
{ prop: "name", label: '股权人姓名', align: "center", width: "220px", },
|
||||
{ prop: "householdRelation", label: '与户主关系', align: "center", width: "200px", },
|
||||
{ prop: "idNumber", label: '身份证', align: "center", width: "300px", },
|
||||
{ prop: "shareholdingNumber", label: '持股数量', align: "center", width: "200px", },
|
||||
{ prop: "shareholdingAmount", label: '金额', align: "center", width: "200px", },
|
||||
]
|
||||
}
|
||||
},
|
||||
created() {
|
||||
if (this.params && this.params.id) {
|
||||
|
||||
Reference in New Issue
Block a user