style:登记薄
Showing
3 changed files
with
38 additions
and
29 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-11-14 15:10:12 | 4 | * @LastEditTime: 2023-11-14 15:43:23 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="content"> | 7 | <div class="content"> |
... | @@ -230,6 +230,14 @@ | ... | @@ -230,6 +230,14 @@ |
230 | } | 230 | } |
231 | </script> | 231 | </script> |
232 | <style scoped lang="scss"> | 232 | <style scoped lang="scss"> |
233 | /deep/.el-collapse-item__header:hover { | ||
234 | background-color: #f5f7fa; | ||
235 | } | ||
236 | /deep/.el-collapse-item__content { | ||
237 | .unselected:hover { | ||
238 | background-color: #f5f7fa; | ||
239 | } | ||
240 | } | ||
233 | /deep/.el-collapse-item__header .el-collapse-item__arrow:hover { | 241 | /deep/.el-collapse-item__header .el-collapse-item__arrow:hover { |
234 | transition: transform 0.3s; | 242 | transition: transform 0.3s; |
235 | transform: scale(1.3); | 243 | transform: scale(1.3); | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-11-14 15:15:10 | 4 | * @LastEditTime: 2023-11-14 15:36:05 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -61,17 +61,10 @@ | ... | @@ -61,17 +61,10 @@ |
61 | label="状态" | 61 | label="状态" |
62 | width="150"> | 62 | width="150"> |
63 | <template slot-scope="scope"> | 63 | <template slot-scope="scope"> |
64 | <a style='color:#3498db;' v-show="scope.row.djblzt==1">正在办理</a> | 64 | <div> |
65 | <span v-show="scope.row.zjgcdyzt==1">>,在建工程抵押</span> | 65 | <a style='color:#3498db;' v-show="scope.row.djblzt==1">{{getStatusText(scope.row)}}</a> |
66 | <span v-show="scope.row.ycfzt==1">>,已预查封</span> | 66 | <span v-show="scope.row.djblzt !=1">{{getStatusText(scope.row)}}</span> |
67 | <span v-show="scope.row.ycfzt==1">>,已预查封</span> | 67 | </div> |
68 | <span v-show="scope.row.cfzt==1">>,已查封</span> | ||
69 | <span v-show="scope.row.diyizt==1">>,已地役</span> | ||
70 | <span v-show="scope.row.yyzt==1">>,异议中</span> | ||
71 | <span v-show="scope.row.xzzt==1">,已限制</span> | ||
72 | <span v-show="scope.row.ygmmzt==1">>,已预告买卖</span> | ||
73 | <span v-show="scope.row.ygdyzt==1">>,已预告抵押</span> | ||
74 | <span v-show="scope.row.dyzt==1">>,已抵押</span> | ||
75 | </template> | 68 | </template> |
76 | </el-table-column> | 69 | </el-table-column> |
77 | <el-table-column | 70 | <el-table-column |
... | @@ -142,11 +135,13 @@ | ... | @@ -142,11 +135,13 @@ |
142 | //首次登记 | 135 | //首次登记 |
143 | import jump from "./mixin/jump"; | 136 | import jump from "./mixin/jump"; |
144 | import store from '@/store/index.js' | 137 | import store from '@/store/index.js' |
138 | import Filter from '@/utils/filter.js' | ||
139 | const filter = new Filter(); | ||
145 | import table from "@/utils/mixin/table"; | 140 | import table from "@/utils/mixin/table"; |
146 | import { ywPopupDialog } from "@/utils/popup.js"; | 141 | import { ywPopupDialog } from "@/utils/popup.js"; |
147 | import { datas, sendThis } from "../javascript/selectFwfgSplitMerge.js"; | 142 | import { datas, sendThis } from "../javascript/selectFwfgSplitMerge.js"; |
148 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 143 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
149 | import { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; | 144 | import { selectFwsyq, selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; |
150 | import { startBusinessFlow } from "@/api/workFlow.js"; | 145 | import { startBusinessFlow } from "@/api/workFlow.js"; |
151 | export default { | 146 | export default { |
152 | mixins: [table, jump], | 147 | mixins: [table, jump], |
... | @@ -156,6 +151,7 @@ | ... | @@ -156,6 +151,7 @@ |
156 | }, | 151 | }, |
157 | data () { | 152 | data () { |
158 | return { | 153 | return { |
154 | Filter: {}, | ||
159 | loading: false, | 155 | loading: false, |
160 | queryForm: defaultParameters.defaultParameters(), | 156 | queryForm: defaultParameters.defaultParameters(), |
161 | // 表格数据 | 157 | // 表格数据 |
... | @@ -172,6 +168,10 @@ | ... | @@ -172,6 +168,10 @@ |
172 | sendThis(this) | 168 | sendThis(this) |
173 | }, | 169 | }, |
174 | methods: { | 170 | methods: { |
171 | // 使用 yWstatus 方法 | ||
172 | getStatusText (row) { | ||
173 | return filter.yWstatus(row); | ||
174 | }, | ||
175 | /** | 175 | /** |
176 | * @description: 单选事件 | 176 | * @description: 单选事件 |
177 | * @author: renchao | 177 | * @author: renchao |
... | @@ -202,12 +202,14 @@ | ... | @@ -202,12 +202,14 @@ |
202 | queryClick () { | 202 | queryClick () { |
203 | this.$startLoading(); | 203 | this.$startLoading(); |
204 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 204 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
205 | selectJsydQlxxSplitMergeBefore({ ...this.queryForm, ...this.pageData }).then((res) => { | 205 | selectFwsyq({ ...this.queryForm, ...this.pageData }).then((res) => { |
206 | this.$endLoading(); | 206 | this.$endLoading(); |
207 | if (res.code === 200) { | 207 | if (res.code === 200) { |
208 | this.tableData.data = res.result | 208 | this.tableData.data = res.result.records |
209 | } | 209 | } |
210 | }); | 210 | }).catch(() => { |
211 | this.$endLoading(); | ||
212 | }) | ||
211 | }, | 213 | }, |
212 | /** | 214 | /** |
213 | * @description: submitForm | 215 | * @description: submitForm | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-11-14 13:45:28 | 4 | * @LastEditTime: 2023-11-14 15:36:32 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -70,17 +70,10 @@ | ... | @@ -70,17 +70,10 @@ |
70 | label="状态" | 70 | label="状态" |
71 | width="150"> | 71 | width="150"> |
72 | <template slot-scope="scope"> | 72 | <template slot-scope="scope"> |
73 | <a style='color:#3498db;' v-show="scope.row.djblzt==1">正在办理</a> | 73 | <div> |
74 | <span v-show="scope.row.zjgcdyzt==1">>,在建工程抵押</span> | 74 | <a style='color:#3498db;' v-show="scope.row.djblzt==1">{{getStatusText(scope.row)}}</a> |
75 | <span v-show="scope.row.ycfzt==1">>,已预查封</span> | 75 | <span v-show="scope.row.djblzt !=1">{{getStatusText(scope.row)}}</span> |
76 | <span v-show="scope.row.ycfzt==1">>,已预查封</span> | 76 | </div> |
77 | <span v-show="scope.row.cfzt==1">>,已查封</span> | ||
78 | <span v-show="scope.row.diyizt==1">>,已地役</span> | ||
79 | <span v-show="scope.row.yyzt==1">>,异议中</span> | ||
80 | <span v-show="scope.row.xzzt==1">,已限制</span> | ||
81 | <span v-show="scope.row.ygmmzt==1">>,已预告买卖</span> | ||
82 | <span v-show="scope.row.ygdyzt==1">>,已预告抵押</span> | ||
83 | <span v-show="scope.row.dyzt==1">>,已抵押</span> | ||
84 | </template> | 77 | </template> |
85 | </el-table-column> | 78 | </el-table-column> |
86 | <el-table-column | 79 | <el-table-column |
... | @@ -139,6 +132,8 @@ | ... | @@ -139,6 +132,8 @@ |
139 | //首次登记 | 132 | //首次登记 |
140 | import jump from "./mixin/jump"; | 133 | import jump from "./mixin/jump"; |
141 | import store from '@/store/index.js' | 134 | import store from '@/store/index.js' |
135 | import Filter from '@/utils/filter.js' | ||
136 | const filter = new Filter(); | ||
142 | import table from "@/utils/mixin/table"; | 137 | import table from "@/utils/mixin/table"; |
143 | import { ywPopupDialog } from "@/utils/popup.js"; | 138 | import { ywPopupDialog } from "@/utils/popup.js"; |
144 | import { datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js"; | 139 | import { datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js"; |
... | @@ -169,6 +164,10 @@ | ... | @@ -169,6 +164,10 @@ |
169 | sendThis(this) | 164 | sendThis(this) |
170 | }, | 165 | }, |
171 | methods: { | 166 | methods: { |
167 | // 使用 yWstatus 方法 | ||
168 | getStatusText (row) { | ||
169 | return filter.yWstatus(row); | ||
170 | }, | ||
172 | /** | 171 | /** |
173 | * @description: 单选事件 | 172 | * @description: 单选事件 |
174 | * @author: renchao | 173 | * @author: renchao | ... | ... |
-
Please register or sign in to post a comment