70432711 by jiaozeping@pashanhoo.com

申请业务规则

1 parent ab7bfcd3
......@@ -6,23 +6,34 @@
<el-row>
<el-col :span="6">
<el-form-item label="权利类型">
<el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型">
<el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value">
<el-select
v-model="queryForm.qllx"
filterable
clearable
placeholder="请选择权利类型"
>
<el-option
v-for="item in qllxs"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="登记业务编码">
<el-input placeholder="请输入登记业务编码" v-model="queryForm.bdcdyh" clearable class="width200px">
<el-input
placeholder="请输入登记业务编码"
v-model="queryForm.djywbm"
clearable
class="width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="业务号">
<el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px">
</el-input>
</el-form-item>
</el-col>
<el-col :span="6" class="btnCol">
......@@ -36,9 +47,17 @@
</div>
<!-- 表格 -->
<div class="from-clues-content">
<lb-table :page-size="pageData.size" @sort-change="handleSort" :current-page.sync="pageData.current"
:total="pageData.total" @selection-change="handleSelectionChange" @size-change="handleSizeChange"
@p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
<lb-table
:page-size="pageData.size"
@sort-change="handleSort"
:current-page.sync="pageData.current"
:total="pageData.total"
@selection-change="handleSelectionChange"
@size-change="handleSizeChange"
@p-current-change="handleCurrentChange"
:column="tableData.columns"
:data="tableData.data"
>
</lb-table>
</div>
</div>
......@@ -50,16 +69,14 @@ export default {
name: "djbcx",
components: {},
mixins: [table],
mounted () {
mounted() {
sendThis(this);
},
data () {
data() {
return {
queryForm: {
qllx: "",
bdcdyh: "",
bdcqzh: "",
ywh: "",
djywbm: "",
},
pageData: {
current: 1,
......@@ -84,13 +101,17 @@ export default {
},
methods: {
// 初始化数据
fetchData () { },
handleSort (name, sort) {
fetchData() {},
handleSort(name, sort) {
console.log(name, sort);
},
openDialog () {
openDialog() {
console.log(999999999999999);
},
editClick(){
alert("edit");
}
},
};
</script>
......
......@@ -15,51 +15,49 @@ class data extends filter {
type: 'index',
width: '50'
},
// {
// label: "权属状态",
// render: (h, scope) => {
// return (
// <div>
// <span>{scope.row.qszt}</span>
// </div>
// )
// }
// },
{
label: "权属状态",
render: (h, scope) => {
return (
<div>
<span>{scope.row.qszt}</span>
</div>
)
}
prop: "sqfl",
label: "申请分类",
},
{
label: "权利类型",
// this.rentType
render: (h, scope) => {
return <div>{scope.row.qllx}</div>;
}
},
{
prop: "ywh",
label: "业务号",
prop: "djywbm",
label: "登记业务编码",
},
{
prop: "bdcdyh",
label: "不动产单元号",
prop: "qllx",
label: "权利类型",
},
{
prop: "bdcqzh",
label: "不动产权证号",
prop: "djlx",
label: "登记类型",
},
{
prop: "qlr",
label: "权利人",
prop: "fqywdylx",
label: "发起业务单元类型",
},
{
prop: "ywr",
label: "义务人",
prop: "sfqy",
label: "是否启用",
},
{
prop: "zl",
label: "坐落",
prop: "czsj",
label: "最近操作时间"
},
{
prop: "sjlx",
label: "数据类型"
prop: "czr",
label: "最近操作人"
},
{
label: '操作',
width: '150',
......@@ -68,8 +66,7 @@ class data extends filter {
render: (h, scope) => {
return (
<div>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openDialog(scope) }}>登记薄</el-button>
<el-button type="text" icon="el-icon-film" onClick={() => { vm.openDialog(scope) }}>楼盘表</el-button>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.editClick (scope) }}>修改</el-button>
</div>
)
}
......