42067d25 by tianhaohao@pashanhoo.com

11111

1 parent 9865aa2c
...@@ -394,9 +394,9 @@ export function selectYgdy (data) { ...@@ -394,9 +394,9 @@ export function selectYgdy (data) {
394 * @param data 394 * @param data
395 * @returns {*} 395 * @returns {*}
396 */ 396 */
397 export function selectAllHInfo (data) { 397 export function selectHQjdc (data) {
398 return request({ 398 return request({
399 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectAllHInfo', 399 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectHQjdc',
400 method: 'post', 400 method: 'post',
401 data 401 data
402 }) 402 })
......
...@@ -105,13 +105,13 @@ ...@@ -105,13 +105,13 @@
105 </div> 105 </div>
106 </div> 106 </div>
107 <!-- 单元列表页面--> 107 <!-- 单元列表页面-->
108 <selectAllHInfo v-else :sqywInfo="formData" /> 108 <selectZrzH v-else :sqywInfo="formData" />
109 </div> 109 </div>
110 </template> 110 </template>
111 111
112 <script> 112 <script>
113 import lpbContent from "./lpbContent/index"; 113 import lpbContent from "./lpbContent/index";
114 import selectAllHInfo from "../ywbl/ywsq/components/selectAllHInfo" 114 import selectZrzH from "../ywbl/ywsq/components/selectZrzH"
115 import { getLpbFwytAndQlxz,getLpbQsxtj } from '@/api/lpb' 115 import { getLpbFwytAndQlxz,getLpbQsxtj } from '@/api/lpb'
116 export default { 116 export default {
117 name: "lpb", 117 name: "lpb",
...@@ -123,7 +123,7 @@ export default { ...@@ -123,7 +123,7 @@ export default {
123 }, 123 },
124 components: { 124 components: {
125 lpbContent, 125 lpbContent,
126 selectAllHInfo 126 selectZrzH
127 }, 127 },
128 data () { 128 data () {
129 return { 129 return {
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 52 import { defaultParameters } from "../javascript/publicDefaultPar.js";
53 import table from "@/utils/mixin/table"; 53 import table from "@/utils/mixin/table";
54 import jump from "./mixin/jump"; 54 import jump from "./mixin/jump";
55 import { selectYgdj100, startBusinessFlow } from "@/api/ywbl.js"; 55 import { selectHQjdc, startBusinessFlow } from "@/api/ywbl.js";
56 export default { 56 export default {
57 mixins: [table, jump], 57 mixins: [table, jump],
58 props: { 58 props: {
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
78 console.log("申请业务单一流向状态",this.sqywInfo.sqywdylx); 78 console.log("申请业务单一流向状态",this.sqywInfo.sqywdylx);
79 this.$startLoading(); 79 this.$startLoading();
80 this.queryForm.sqywbm = this.sqywInfo.djywbm; 80 this.queryForm.sqywbm = this.sqywInfo.djywbm;
81 selectYgdj100({ ...this.queryForm, ...this.pageData }).then((res) => { 81 selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => {
82 this.$endLoading(); 82 this.$endLoading();
83 if (res.code === 200) { 83 if (res.code === 200) {
84 let { total, records } = res.result; 84 let { total, records } = res.result;
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 52 import { defaultParameters } from "../javascript/publicDefaultPar.js";
53 import table from "@/utils/mixin/table"; 53 import table from "@/utils/mixin/table";
54 import jump from "./mixin/jump"; 54 import jump from "./mixin/jump";
55 import { selectAllHInfo, startBusinessFlow } from "@/api/ywbl.js"; 55 import { selectHQjdc, startBusinessFlow } from "@/api/ywbl.js";
56 export default { 56 export default {
57 mixins: [table, jump], 57 mixins: [table, jump],
58 props: { 58 props: {
...@@ -75,10 +75,10 @@ ...@@ -75,10 +75,10 @@
75 sendThis(this); 75 sendThis(this);
76 }, 76 },
77 methods: { 77 methods: {
78 queryClick () { 78 queryClick () {
79 console.log("申请业务单一流向状态",this.sqywInfo.sqywdylx);
80 this.$startLoading(); 79 this.$startLoading();
81 selectAllHInfo({ "zrzbsm": this.sqywInfo.zrzbsm, ...this.queryForm, ...this.pageData }).then((res) => { 80 this.queryForm.zrzbsm = this.sqywInfo.zrzbsm;
81 selectHQjdc({...this.queryForm, ...this.pageData }).then((res) => {
82 this.$endLoading(); 82 this.$endLoading();
83 if (res.code === 200) { 83 if (res.code === 200) {
84 let { total, records } = res.result; 84 let { total, records } = res.result;
......
...@@ -54,7 +54,7 @@ export function queueDjywmc(djywbm, djqxbm) { ...@@ -54,7 +54,7 @@ export function queueDjywmc(djywbm, djqxbm) {
54 vm = "cfdj"; 54 vm = "cfdj";
55 break; 55 break;
56 case "B40100"://预告首次 56 case "B40100"://预告首次
57 vm = "selectYgdj100"; 57 vm = "selectH";
58 break; 58 break;
59 case "B40200"://预告转移 59 case "B40200"://预告转移
60 case "B40300"://预告变更 60 case "B40300"://预告变更
......