bb8594f7 by 任超

feat:综合查询

1 parent d8bb2f52
...@@ -16,7 +16,7 @@ export default { ...@@ -16,7 +16,7 @@ export default {
16 return { 16 return {
17 key: 0, 17 key: 0,
18 editItem: '', 18 editItem: '',
19 myValue: this.value, 19 myValue: this.value
20 } 20 }
21 }, 21 },
22 watch: { 22 watch: {
......
...@@ -118,7 +118,7 @@ export default { ...@@ -118,7 +118,7 @@ export default {
118 handleLpbClick (item) { 118 handleLpbClick (item) {
119 this.$popup('楼盘表', 'components/bjlp/index', { 119 this.$popup('楼盘表', 'components/bjlp/index', {
120 width: '90%', 120 width: '90%',
121 height: "90%", 121 height: "92%",
122 formData: { 122 formData: {
123 bsm: '' 123 bsm: ''
124 } 124 }
......
...@@ -99,36 +99,23 @@ export default { ...@@ -99,36 +99,23 @@ export default {
99 99
100 //打开楼盘表 100 //打开楼盘表
101 openlpbClick (scope) { 101 openlpbClick (scope) {
102 debugger; 102 // var zrzbsm = scope.row.bsm;
103 var zrzbsm = scope.row.bsm; 103 this.$popup('楼盘表', 'components/bjlp/index', {
104 104 width: '90%',
105 let that = this; 105 height: "92%",
106 this.$popup({
107 title: "楼盘表",
108 width: "50%",
109 btnShow: true,
110 editItem: "xxxxxxxxxx",
111 height: "600px",
112 formData: { 106 formData: {
113 bsmSlsq: this.bsmSlsq, 107 bsm: ''
114 dataList: this.unitData,
115 },
116 cancel: function () { }, //取消事件的回调
117 confirm: function () {
118 that.loadBdcdylist();
119 }, //确认事件的回调
120 });
121
122
123 getLpb({ zrzbsm: zrzbsm })
124 .then((res) => {
125 if (res.code == 200) {
126 var lpbdata = res.result;
127 } 108 }
128 }) 109 })
129 .catch((error) => { 110 // getLpb({ zrzbsm: zrzbsm })
130 console.log(error); 111 // .then((res) => {
131 }); 112 // if (res.code == 200) {
113 // var lpbdata = res.result;
114 // }
115 // })
116 // .catch((error) => {
117 // console.log(error);
118 // });
132 }, 119 },
133 }, 120 },
134 }; 121 };
......