54b26e2c by jiaozeping@pashanhoo.com

selectScBdcdy

1 parent 024bbf3f
......@@ -31,9 +31,9 @@ export function getNextNode (bsmSqyw) {
/*
业务办理-选择单元-根据条件进行列表查询
*/
export function selectBdcdy (data) {
export function selectScBdcdy (data) {
return request({
url: '/ywbl/ywsq/selectBdcdy',
url: '/ywbl/ywsq/selectScBdcdy',
method: 'post',
data
})
......
......@@ -55,7 +55,7 @@
//查封等级
import { datas, sendThis } from "./cfdj.js";
import table from "@/utils/mixin/table";
import { selectBdcdy, startBusinessFlow } from "@/api/ywbl.js";
import { selectScBdcdy, startBusinessFlow } from "@/api/ywbl.js";
export default {
props: {
bsmSqyw: { type: String, default: '' },
......@@ -94,7 +94,7 @@ export default {
},
fetchData () {
if (this.bsmSqyw) {
selectBdcdy({ ...this.queryForm, ...this.pageData })
selectScBdcdy({ ...this.queryForm, ...this.pageData })
.then((res) => {
if (res.code === 200) {
let { total, records } = res.result;
......
......@@ -93,7 +93,7 @@
//首次登记
import { datas, sendThis } from "./scdj.js";
import table from "@/utils/mixin/table";
import { selectBdcdy, startBusinessFlow } from "@/api/ywbl.js";
import { selectScBdcdy, startBusinessFlow } from "@/api/ywbl.js";
export default {
props: {
bsmSqyw: { type: String, default: "" },
......@@ -133,7 +133,7 @@ export default {
},
fetchData() {
if (this.bsmSqyw) {
selectBdcdy({ ...this.queryForm, ...this.pageData }).then((res) => {
selectScBdcdy({ ...this.queryForm, ...this.pageData }).then((res) => {
if (res.code === 200) {
let { total, records } = res.result;
this.tableData.total = total;
......
......@@ -55,7 +55,7 @@
//续封登记
import { datas, sendThis } from "./xfdj.js";
import table from "@/utils/mixin/table";
import { selectBdcdy, startBusinessFlow } from "@/api/ywbl.js";
import { selectScBdcdy, startBusinessFlow } from "@/api/ywbl.js";
export default {
props: {
bsmSqyw: { type: String, default: '' },
......@@ -94,7 +94,7 @@ export default {
},
fetchData () {
if (this.bsmSqyw) {
selectBdcdy({ ...this.queryForm, ...this.pageData })
selectScBdcdy({ ...this.queryForm, ...this.pageData })
.then((res) => {
if (res.code === 200) {
let { total, records } = res.result;
......
......@@ -55,7 +55,7 @@
//转移登记
import { datas, sendThis } from "./zydj.js";
import table from "@/utils/mixin/table";
import { selectBdcdy, startBusinessFlow } from "@/api/ywbl.js";
import { selectScBdcdy, startBusinessFlow } from "@/api/ywbl.js";
export default {
props: {
bsmSqyw: { type: String, default: '' },
......@@ -94,7 +94,7 @@ export default {
},
fetchData () {
if (this.bsmSqyw) {
selectBdcdy({ ...this.queryForm, ...this.pageData })
selectScBdcdy({ ...this.queryForm, ...this.pageData })
.then((res) => {
if (res.code === 200) {
let { total, records } = res.result;
......