修改待办箱功能
Showing
2 changed files
with
52 additions
and
30 deletions
... | @@ -45,6 +45,32 @@ | ... | @@ -45,6 +45,32 @@ |
45 | </el-form-item> | 45 | </el-form-item> |
46 | </el-col> | 46 | </el-col> |
47 | </el-row> | 47 | </el-row> |
48 | <el-row> | ||
49 | <el-col :span="5"> | ||
50 | <el-form-item label="不动产单元号"> | ||
51 | <el-input placeholder="请输入不动产单元号" v-model="queryForm.bdcdyh" clearable class="width100"> | ||
52 | </el-input> | ||
53 | </el-form-item> | ||
54 | </el-col> | ||
55 | <el-col :span="5"> | ||
56 | <el-form-item label="申请人"> | ||
57 | <el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.sqrmc" clearable class="width100"> | ||
58 | </el-input> | ||
59 | </el-form-item> | ||
60 | </el-col> | ||
61 | <el-col :span="5"> | ||
62 | <el-form-item label="申请人证件号"> | ||
63 | <el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.sqrzjhm" clearable class="width100"> | ||
64 | </el-input> | ||
65 | </el-form-item> | ||
66 | </el-col> | ||
67 | <el-col :span="5"> | ||
68 | <el-form-item label="坐落"> | ||
69 | <el-input placeholder="如需要模糊查询,前后输入%" v-model="queryForm.zl" clearable class="width100"> | ||
70 | </el-input> | ||
71 | </el-form-item> | ||
72 | </el-col> | ||
73 | </el-row> | ||
48 | <el-row class="advanced-search"> | 74 | <el-row class="advanced-search"> |
49 | <span>搜索条件:</span> | 75 | <span>搜索条件:</span> |
50 | <ul> | 76 | <ul> |
... | @@ -132,14 +158,14 @@ export default { | ... | @@ -132,14 +158,14 @@ export default { |
132 | this.$endLoading(); | 158 | this.$endLoading(); |
133 | if (res.code === 200) { | 159 | if (res.code === 200) { |
134 | let { total, records } = res.result; | 160 | let { total, records } = res.result; |
135 | records.forEach((item) => { | 161 | // records.forEach((item) => { |
136 | item.qlrmc = item.qlrmc.join(","); | 162 | // item.qlrmc = item.qlrmc.join(","); |
137 | item.ywh = item.ywh.join(","); | 163 | // item.ywh = item.ywh.join(","); |
138 | item.zl = item.zl.join(","); | 164 | // item.zl = item.zl.join(","); |
139 | item.fromstepdate = item.fromstepdate[0]; | 165 | // item.fromstepdate = item.fromstepdate[0]; |
140 | item.qlrmcStr = item.qlrmc ? String(item.qlrmc) : ""; | 166 | // item.qlrmcStr = item.qlrmc ? String(item.qlrmc) : ""; |
141 | item.ywrmcStr = item.ywrmc ? String(item.ywrmc) : ""; | 167 | // item.ywrmcStr = item.ywrmc ? String(item.ywrmc) : ""; |
142 | }); | 168 | // }); |
143 | this.tableData.total = total ? total : 0; | 169 | this.tableData.total = total ? total : 0; |
144 | this.tableData.data = records ? records : []; | 170 | this.tableData.data = records ? records : []; |
145 | } | 171 | } | ... | ... |
... | @@ -37,14 +37,15 @@ class data extends filter { | ... | @@ -37,14 +37,15 @@ class data extends filter { |
37 | if (scope.row.yygqzt == '1') { | 37 | if (scope.row.yygqzt == '1') { |
38 | return <div class='suspend'>异议挂起</div> | 38 | return <div class='suspend'>异议挂起</div> |
39 | } | 39 | } |
40 | switch (scope.row.lczt) { | 40 | return <div class='allow'>进行中</div> |
41 | case '1': | 41 | // switch (scope.row.lczt) { |
42 | return <div class='allow'>进行中</div> | 42 | // case '1': |
43 | case '2': | 43 | // return <div class='allow'>进行中</div> |
44 | return <div class='prohibit'>已结束</div> | 44 | // case '2': |
45 | case '3': | 45 | // return <div class='prohibit'>已结束</div> |
46 | return <div class='allow'>进行中</div> | 46 | // case '3': |
47 | } | 47 | // return <div class='allow'>进行中</div> |
48 | // } | ||
48 | } | 49 | } |
49 | }, | 50 | }, |
50 | { | 51 | { |
... | @@ -66,24 +67,19 @@ class data extends filter { | ... | @@ -66,24 +67,19 @@ class data extends filter { |
66 | width: '220' | 67 | width: '220' |
67 | }, | 68 | }, |
68 | { | 69 | { |
70 | prop: "bdcdyh", | ||
71 | label: "不动产单元号", | ||
72 | width: '170', | ||
73 | }, | ||
74 | { | ||
75 | prop: "qlrmc", | ||
69 | label: "权利人", | 76 | label: "权利人", |
70 | render: (h, scope) => { | 77 | width: '120', |
71 | return ( | ||
72 | <div> | ||
73 | <span>{scope.row.qlrmcStr}</span> | ||
74 | </div> | ||
75 | ) | ||
76 | } | ||
77 | }, | 78 | }, |
78 | { | 79 | { |
80 | prop: "ywrmc", | ||
79 | label: "义务人", | 81 | label: "义务人", |
80 | render: (h, scope) => { | 82 | width: '120', |
81 | return ( | ||
82 | <div> | ||
83 | <span>{scope.row.ywrmcStr}</span> | ||
84 | </div> | ||
85 | ) | ||
86 | } | ||
87 | }, | 83 | }, |
88 | { | 84 | { |
89 | prop: "zl", | 85 | prop: "zl", | ... | ... |
-
Please register or sign in to post a comment