查封登记
Showing
3 changed files
with
14 additions
and
4 deletions
| ... | @@ -94,3 +94,13 @@ export function selectDiyaq (data) { | ... | @@ -94,3 +94,13 @@ export function selectDiyaq (data) { |
| 94 | data | 94 | data |
| 95 | }) | 95 | }) |
| 96 | } | 96 | } |
| 97 | /* | ||
| 98 | 业务办理-选择查封信息-根据条件进行列表查询 | ||
| 99 | */ | ||
| 100 | export function selectCfdj (data) { | ||
| 101 | return request({ | ||
| 102 | url: '/ywbl/ywsq/selectCfdj', | ||
| 103 | method: 'post', | ||
| 104 | data | ||
| 105 | }) | ||
| 106 | } | ... | ... |
| ... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
| 55 | //查封登记 | 55 | //查封登记 |
| 56 | import { datas, sendThis } from "../javascript/cfdj.js"; | 56 | import { datas, sendThis } from "../javascript/cfdj.js"; |
| 57 | import table from "@/utils/mixin/table"; | 57 | import table from "@/utils/mixin/table"; |
| 58 | import { selectQlxx, startBusinessFlow } from "@/api/ywbl.js"; | 58 | import { selectCfdj, startBusinessFlow } from "@/api/ywbl.js"; |
| 59 | export default { | 59 | export default { |
| 60 | props: { | 60 | props: { |
| 61 | bsmSqyw: { type: String, default: '' }, | 61 | bsmSqyw: { type: String, default: '' }, |
| ... | @@ -68,7 +68,7 @@ export default { | ... | @@ -68,7 +68,7 @@ export default { |
| 68 | bdcdyh: "", | 68 | bdcdyh: "", |
| 69 | ywh: "", | 69 | ywh: "", |
| 70 | bdcqzh: "", | 70 | bdcqzh: "", |
| 71 | sqywbm: "B39800", | 71 | sqywbm: "B39300", |
| 72 | }, | 72 | }, |
| 73 | qllxs: [], | 73 | qllxs: [], |
| 74 | tableData: { | 74 | tableData: { |
| ... | @@ -94,7 +94,7 @@ export default { | ... | @@ -94,7 +94,7 @@ export default { |
| 94 | }, | 94 | }, |
| 95 | fetchData () { | 95 | fetchData () { |
| 96 | if (this.bsmSqyw) { | 96 | if (this.bsmSqyw) { |
| 97 | selectQlxx({ ...this.queryForm, ...this.pageData }) | 97 | selectCfdj({ ...this.queryForm, ...this.pageData }) |
| 98 | .then((res) => { | 98 | .then((res) => { |
| 99 | if (res.code === 200) { | 99 | if (res.code === 200) { |
| 100 | let { total, records } = res.result; | 100 | let { total, records } = res.result; | ... | ... |
-
Please register or sign in to post a comment