7e0049a8 by tianhaohao@pashanhoo.com

修改待办箱功能

1 parent f9400ecb
......@@ -45,6 +45,32 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="5">
<el-form-item label="不动产单元号">
<el-input placeholder="请输入不动产单元号" v-model="queryForm.bdcdyh" clearable class="width100">
</el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="申请人">
<el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.sqrmc" clearable class="width100">
</el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="申请人证件号">
<el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.sqrzjhm" clearable class="width100">
</el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="坐落">
<el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.zl" clearable class="width100">
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row class="advanced-search">
<span>搜索条件:</span>
<ul>
......@@ -132,14 +158,14 @@ export default {
this.$endLoading();
if (res.code === 200) {
let { total, records } = res.result;
records.forEach((item) => {
item.qlrmc = item.qlrmc.join(",");
item.ywh = item.ywh.join(",");
item.zl = item.zl.join(",");
item.fromstepdate = item.fromstepdate[0];
item.qlrmcStr = item.qlrmc ? String(item.qlrmc) : "";
item.ywrmcStr = item.ywrmc ? String(item.ywrmc) : "";
});
// records.forEach((item) => {
// item.qlrmc = item.qlrmc.join(",");
// item.ywh = item.ywh.join(",");
// item.zl = item.zl.join(",");
// item.fromstepdate = item.fromstepdate[0];
// item.qlrmcStr = item.qlrmc ? String(item.qlrmc) : "";
// item.ywrmcStr = item.ywrmc ? String(item.ywrmc) : "";
// });
this.tableData.total = total ? total : 0;
this.tableData.data = records ? records : [];
}
......
......@@ -37,14 +37,15 @@ class data extends filter {
if (scope.row.yygqzt == '1') {
return <div class='suspend'>异议挂起</div>
}
switch (scope.row.lczt) {
case '1':
return <div class='allow'>进行中</div>
case '2':
return <div class='prohibit'>已结束</div>
case '3':
return <div class='allow'>进行中</div>
}
// switch (scope.row.lczt) {
// case '1':
// return <div class='allow'>进行中</div>
// case '2':
// return <div class='prohibit'>已结束</div>
// case '3':
// return <div class='allow'>进行中</div>
// }
}
},
{
......@@ -66,24 +67,19 @@ class data extends filter {
width: '220'
},
{
prop: "bdcdyh",
label: "不动产单元号",
width: '170',
},
{
prop: "qlrmc",
label: "权利人",
render: (h, scope) => {
return (
<div>
<span>{scope.row.qlrmcStr}</span>
</div>
)
}
width: '120',
},
{
prop: "ywrmc",
label: "义务人",
render: (h, scope) => {
return (
<div>
<span>{scope.row.ywrmcStr}</span>
</div>
)
}
width: '120',
},
{
prop: "zl",
......