96066548 by xiaomiao

--no commit message

1 parent c1b96e41
...@@ -271,7 +271,6 @@ ...@@ -271,7 +271,6 @@
271 }, 271 },
272 created () { 272 created () {
273 window.addEventListener("resize", this.getHeight); 273 window.addEventListener("resize", this.getHeight);
274 console.log(this.formData);
275 this.getHeight(); 274 this.getHeight();
276 }, 275 },
277 mounted () { 276 mounted () {
......
...@@ -311,11 +311,11 @@ ...@@ -311,11 +311,11 @@
311 } 311 }
312 }, 312 },
313 handleLpbClick (item) { 313 handleLpbClick (item) {
314 console.log("item",item);
315 this.$popup('楼盘表', 'lpb/index', { 314 this.$popup('楼盘表', 'lpb/index', {
316 width: '85%', 315 width: '85%',
317 formData: { 316 formData: {
318 bsm: item.bsm, 317 bsm: item.bsm,
318 bsmSqyw:this.sqywInfo.bsmSqyw
319 319
320 } 320 }
321 }) 321 })
......
...@@ -89,7 +89,6 @@ ...@@ -89,7 +89,6 @@
89 */ 89 */
90 queryClick () { 90 queryClick () {
91 this.$startLoading(); 91 this.$startLoading();
92 console.log("this.sqywInfo.zrzbsm",this.sqywInfo);
93 this.queryForm.zrzbsm = this.sqywInfo.bsm; 92 this.queryForm.zrzbsm = this.sqywInfo.bsm;
94 // this.queryForm.zrzbsm = this.sqywInfo.zrzbsm; 93 // this.queryForm.zrzbsm = this.sqywInfo.zrzbsm;
95 selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => { 94 selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => {
......
...@@ -159,7 +159,6 @@ ...@@ -159,7 +159,6 @@
159 if (this.selectType == 'together') { 159 if (this.selectType == 'together') {
160 getTogetherBiz().then(res => { 160 getTogetherBiz().then(res => {
161 if (res) { 161 if (res) {
162 console.log("res", res);
163 this.djqxList = res.result; 162 this.djqxList = res.result;
164 } 163 }
165 }) 164 })
......
...@@ -37,7 +37,8 @@ ...@@ -37,7 +37,8 @@
37 * @param {*} view 37 * @param {*} view
38 * @author: renchao 38 * @author: renchao
39 */ 39 */
40 loadView (view) { 40
41 loadView (view) {
41 return (r) => 42 return (r) =>
42 require.ensure([], () => r(require(`./components/${view}.vue`))); 43 require.ensure([], () => r(require(`./components/${view}.vue`)));
43 }, 44 },
......