manage-client-xy 3.2.28 → 3.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/SellReport/FinancialStatement.vue +30 -0
- package/src/components/SellReport/ManageBusSummary.vue +241 -241
- package/src/components/SellReport/SmartKitchenSummary.vue +275 -275
- package/src/components/SellReport/UserNumber.vue +30 -0
- package/src/components/SellReport/XianYangNewCharge.vue +355 -355
- package/src/components/sale/businessquery/AreaGeneralQuery.vue +30 -15
- package/src/components/sale/businessquery/CMHGasQuery.vue +30 -0
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +30 -1
- package/src/components/sale/businessquery/ChangeUserQuery.vue +30 -0
- package/src/components/sale/businessquery/ChargeQuery.vue +30 -0
- package/src/components/sale/businessquery/DisableQuery.vue +30 -0
- package/src/components/sale/businessquery/EnableQuery.vue +30 -0
- package/src/components/sale/businessquery/FMYGasQuery.vue +30 -0
- package/src/components/sale/businessquery/FillCardQuery.vue +30 -0
- package/src/components/sale/businessquery/FillGasQuery.vue +30 -0
- package/src/components/sale/businessquery/HandplanQuery.vue +30 -0
- package/src/components/sale/businessquery/LogQuery.vue +32 -0
- package/src/components/sale/businessquery/NewAccountQuery.vue +30 -0
- package/src/components/sale/businessquery/OtherChargeQuery.vue +30 -0
- package/src/components/sale/businessquery/RecordQuery.vue +30 -0
- package/src/components/sale/businessquery/ResidentialQuery.vue +30 -0
- package/src/components/sale/businessquery/ReverseQuery.vue +30 -0
- package/src/components/sale/businessquery/SellingHand.vue +30 -0
- package/src/components/sale/businessquery/TransferQuery.vue +30 -0
- package/src/components/sale/businessquery/cancelAccountQuery.vue +30 -0
- package/src/components/sale/filesquery/DeviceQuery.vue +30 -0
- package/src/components/sale/filesquery/MeterQuery.vue +30 -0
- package/src/components/sale/filesquery/UserQuery.vue +33 -1
- package/src/components/webmeter/DrillData/UserGasAll.vue +30 -1
|
@@ -120,21 +120,36 @@
|
|
|
120
120
|
condition="f_gasproperties = '{}'"
|
|
121
121
|
close-on-select></v-select>
|
|
122
122
|
</div>
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
123
|
+
<div class="col-sm-2 form-group">
|
|
124
|
+
<label class="font_normal_body">房产地址</label>
|
|
125
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
126
|
+
placeholder='房产地址'
|
|
127
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
128
|
+
</div>
|
|
129
|
+
<div class="col-sm-2 form-group">
|
|
130
|
+
<label class="font_normal_body">用途</label>
|
|
131
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
132
|
+
placeholder='用途'
|
|
133
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
134
|
+
</div>
|
|
135
|
+
<div class="col-sm-2 form-group">
|
|
136
|
+
<label class="font_normal_body">房型</label>
|
|
137
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
138
|
+
placeholder='房型'
|
|
139
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
140
|
+
</div>
|
|
141
|
+
<div class="col-sm-2 form-group">
|
|
142
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
143
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
144
|
+
placeholder='是否一户多表'
|
|
145
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
146
|
+
</div>
|
|
147
|
+
<div class="col-sm-2 form-group">
|
|
148
|
+
<label class="font_normal_body">关联ID</label>
|
|
149
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
150
|
+
placeholder='关联ID'
|
|
151
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
152
|
+
</div>
|
|
138
153
|
|
|
139
154
|
|
|
140
155
|
</div>
|
|
@@ -98,6 +98,36 @@
|
|
|
98
98
|
condition="f_gasproperties = '{}'"
|
|
99
99
|
close-on-select></v-select>
|
|
100
100
|
</div>
|
|
101
|
+
<div class="col-sm-2 form-group">
|
|
102
|
+
<label class="font_normal_body">房产地址</label>
|
|
103
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
104
|
+
placeholder='房产地址'
|
|
105
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
106
|
+
</div>
|
|
107
|
+
<div class="col-sm-2 form-group">
|
|
108
|
+
<label class="font_normal_body">用途</label>
|
|
109
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
110
|
+
placeholder='用途'
|
|
111
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
112
|
+
</div>
|
|
113
|
+
<div class="col-sm-2 form-group">
|
|
114
|
+
<label class="font_normal_body">房型</label>
|
|
115
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
116
|
+
placeholder='房型'
|
|
117
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
118
|
+
</div>
|
|
119
|
+
<div class="col-sm-2 form-group">
|
|
120
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
121
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
122
|
+
placeholder='是否一户多表'
|
|
123
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
124
|
+
</div>
|
|
125
|
+
<div class="col-sm-2 form-group">
|
|
126
|
+
<label class="font_normal_body">关联ID</label>
|
|
127
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
128
|
+
placeholder='关联ID'
|
|
129
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
130
|
+
</div>
|
|
101
131
|
</div>
|
|
102
132
|
</div>
|
|
103
133
|
</criteria>
|
|
@@ -163,7 +163,36 @@
|
|
|
163
163
|
condition="{}"
|
|
164
164
|
close-on-select></v-select>
|
|
165
165
|
</div>
|
|
166
|
-
|
|
166
|
+
<div class="col-sm-2 form-group">
|
|
167
|
+
<label class="font_normal_body">房产地址</label>
|
|
168
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
169
|
+
placeholder='房产地址'
|
|
170
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
171
|
+
</div>
|
|
172
|
+
<div class="col-sm-2 form-group">
|
|
173
|
+
<label class="font_normal_body">用途</label>
|
|
174
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
175
|
+
placeholder='用途'
|
|
176
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
177
|
+
</div>
|
|
178
|
+
<div class="col-sm-2 form-group">
|
|
179
|
+
<label class="font_normal_body">房型</label>
|
|
180
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
181
|
+
placeholder='房型'
|
|
182
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
183
|
+
</div>
|
|
184
|
+
<div class="col-sm-2 form-group">
|
|
185
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
186
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
187
|
+
placeholder='是否一户多表'
|
|
188
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
189
|
+
</div>
|
|
190
|
+
<div class="col-sm-2 form-group">
|
|
191
|
+
<label class="font_normal_body">关联ID</label>
|
|
192
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
193
|
+
placeholder='关联ID'
|
|
194
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
195
|
+
</div>
|
|
167
196
|
</div>
|
|
168
197
|
</div>
|
|
169
198
|
</criteria>
|
|
@@ -96,6 +96,36 @@
|
|
|
96
96
|
condition="{}"
|
|
97
97
|
close-on-select></v-select>
|
|
98
98
|
</div>
|
|
99
|
+
<div class="col-sm-2 form-group">
|
|
100
|
+
<label class="font_normal_body">房产地址</label>
|
|
101
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
102
|
+
placeholder='房产地址'
|
|
103
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
104
|
+
</div>
|
|
105
|
+
<div class="col-sm-2 form-group">
|
|
106
|
+
<label class="font_normal_body">用途</label>
|
|
107
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
108
|
+
placeholder='用途'
|
|
109
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
110
|
+
</div>
|
|
111
|
+
<div class="col-sm-2 form-group">
|
|
112
|
+
<label class="font_normal_body">房型</label>
|
|
113
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
114
|
+
placeholder='房型'
|
|
115
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
116
|
+
</div>
|
|
117
|
+
<div class="col-sm-2 form-group">
|
|
118
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
119
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
120
|
+
placeholder='是否一户多表'
|
|
121
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
122
|
+
</div>
|
|
123
|
+
<div class="col-sm-2 form-group">
|
|
124
|
+
<label class="font_normal_body">关联ID</label>
|
|
125
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
126
|
+
placeholder='关联ID'
|
|
127
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
128
|
+
</div>
|
|
99
129
|
</div>
|
|
100
130
|
</div>
|
|
101
131
|
</criteria>
|
|
@@ -281,6 +281,36 @@
|
|
|
281
281
|
condition="{}"
|
|
282
282
|
close-on-select></v-select>
|
|
283
283
|
</div>
|
|
284
|
+
<div class="col-sm-2 form-group">
|
|
285
|
+
<label class="font_normal_body">房产地址</label>
|
|
286
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
287
|
+
placeholder='房产地址'
|
|
288
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
289
|
+
</div>
|
|
290
|
+
<div class="col-sm-2 form-group">
|
|
291
|
+
<label class="font_normal_body">用途</label>
|
|
292
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
293
|
+
placeholder='用途'
|
|
294
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
295
|
+
</div>
|
|
296
|
+
<div class="col-sm-2 form-group">
|
|
297
|
+
<label class="font_normal_body">房型</label>
|
|
298
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
299
|
+
placeholder='房型'
|
|
300
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
301
|
+
</div>
|
|
302
|
+
<div class="col-sm-2 form-group">
|
|
303
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
304
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
305
|
+
placeholder='是否一户多表'
|
|
306
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
307
|
+
</div>
|
|
308
|
+
<div class="col-sm-2 form-group">
|
|
309
|
+
<label class="font_normal_body">关联ID</label>
|
|
310
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
311
|
+
placeholder='关联ID'
|
|
312
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
313
|
+
</div>
|
|
284
314
|
</div>
|
|
285
315
|
</div>
|
|
286
316
|
</criteria>
|
|
@@ -90,6 +90,36 @@
|
|
|
90
90
|
condition="{}"
|
|
91
91
|
close-on-select></v-select>
|
|
92
92
|
</div>
|
|
93
|
+
<div class="col-sm-2 form-group">
|
|
94
|
+
<label class="font_normal_body">房产地址</label>
|
|
95
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
96
|
+
placeholder='房产地址'
|
|
97
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
98
|
+
</div>
|
|
99
|
+
<div class="col-sm-2 form-group">
|
|
100
|
+
<label class="font_normal_body">用途</label>
|
|
101
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
102
|
+
placeholder='用途'
|
|
103
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
104
|
+
</div>
|
|
105
|
+
<div class="col-sm-2 form-group">
|
|
106
|
+
<label class="font_normal_body">房型</label>
|
|
107
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
108
|
+
placeholder='房型'
|
|
109
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
110
|
+
</div>
|
|
111
|
+
<div class="col-sm-2 form-group">
|
|
112
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
113
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
114
|
+
placeholder='是否一户多表'
|
|
115
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
116
|
+
</div>
|
|
117
|
+
<div class="col-sm-2 form-group">
|
|
118
|
+
<label class="font_normal_body">关联ID</label>
|
|
119
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
120
|
+
placeholder='关联ID'
|
|
121
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
122
|
+
</div>
|
|
93
123
|
</div>
|
|
94
124
|
</div>
|
|
95
125
|
</criteria>
|
|
@@ -87,6 +87,36 @@
|
|
|
87
87
|
condition="{}"
|
|
88
88
|
close-on-select></v-select>
|
|
89
89
|
</div>
|
|
90
|
+
<div class="col-sm-2 form-group">
|
|
91
|
+
<label class="font_normal_body">房产地址</label>
|
|
92
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
93
|
+
placeholder='房产地址'
|
|
94
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
95
|
+
</div>
|
|
96
|
+
<div class="col-sm-2 form-group">
|
|
97
|
+
<label class="font_normal_body">用途</label>
|
|
98
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
99
|
+
placeholder='用途'
|
|
100
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
101
|
+
</div>
|
|
102
|
+
<div class="col-sm-2 form-group">
|
|
103
|
+
<label class="font_normal_body">房型</label>
|
|
104
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
105
|
+
placeholder='房型'
|
|
106
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
107
|
+
</div>
|
|
108
|
+
<div class="col-sm-2 form-group">
|
|
109
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
110
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
111
|
+
placeholder='是否一户多表'
|
|
112
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
113
|
+
</div>
|
|
114
|
+
<div class="col-sm-2 form-group">
|
|
115
|
+
<label class="font_normal_body">关联ID</label>
|
|
116
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
117
|
+
placeholder='关联ID'
|
|
118
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
119
|
+
</div>
|
|
90
120
|
</div>
|
|
91
121
|
|
|
92
122
|
|
|
@@ -112,6 +112,36 @@
|
|
|
112
112
|
close-on-select>
|
|
113
113
|
</v-select>
|
|
114
114
|
</div>
|
|
115
|
+
<div class="col-sm-2 form-group">
|
|
116
|
+
<label class="font_normal_body">房产地址</label>
|
|
117
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
118
|
+
placeholder='房产地址'
|
|
119
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
120
|
+
</div>
|
|
121
|
+
<div class="col-sm-2 form-group">
|
|
122
|
+
<label class="font_normal_body">用途</label>
|
|
123
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
124
|
+
placeholder='用途'
|
|
125
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
126
|
+
</div>
|
|
127
|
+
<div class="col-sm-2 form-group">
|
|
128
|
+
<label class="font_normal_body">房型</label>
|
|
129
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
130
|
+
placeholder='房型'
|
|
131
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
132
|
+
</div>
|
|
133
|
+
<div class="col-sm-2 form-group">
|
|
134
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
135
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
136
|
+
placeholder='是否一户多表'
|
|
137
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
138
|
+
</div>
|
|
139
|
+
<div class="col-sm-2 form-group">
|
|
140
|
+
<label class="font_normal_body">关联ID</label>
|
|
141
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
142
|
+
placeholder='关联ID'
|
|
143
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
144
|
+
</div>
|
|
115
145
|
</div>
|
|
116
146
|
</div>
|
|
117
147
|
</criteria>
|
|
@@ -116,6 +116,36 @@
|
|
|
116
116
|
condition="{}"
|
|
117
117
|
close-on-select></v-select>
|
|
118
118
|
</div>
|
|
119
|
+
<div class="col-sm-2 form-group">
|
|
120
|
+
<label class="font_normal_body">房产地址</label>
|
|
121
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
122
|
+
placeholder='房产地址'
|
|
123
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
124
|
+
</div>
|
|
125
|
+
<div class="col-sm-2 form-group">
|
|
126
|
+
<label class="font_normal_body">用途</label>
|
|
127
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
128
|
+
placeholder='用途'
|
|
129
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
130
|
+
</div>
|
|
131
|
+
<div class="col-sm-2 form-group">
|
|
132
|
+
<label class="font_normal_body">房型</label>
|
|
133
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
134
|
+
placeholder='房型'
|
|
135
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
136
|
+
</div>
|
|
137
|
+
<div class="col-sm-2 form-group">
|
|
138
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
139
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
140
|
+
placeholder='是否一户多表'
|
|
141
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
142
|
+
</div>
|
|
143
|
+
<div class="col-sm-2 form-group">
|
|
144
|
+
<label class="font_normal_body">关联ID</label>
|
|
145
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
146
|
+
placeholder='关联ID'
|
|
147
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
148
|
+
</div>
|
|
119
149
|
</div>
|
|
120
150
|
|
|
121
151
|
</div>
|
|
@@ -116,6 +116,36 @@
|
|
|
116
116
|
condition="{}"
|
|
117
117
|
close-on-select></v-select>
|
|
118
118
|
</div>
|
|
119
|
+
<div class="col-sm-2 form-group">
|
|
120
|
+
<label class="font_normal_body">房产地址</label>
|
|
121
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
122
|
+
placeholder='房产地址'
|
|
123
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
124
|
+
</div>
|
|
125
|
+
<div class="col-sm-2 form-group">
|
|
126
|
+
<label class="font_normal_body">用途</label>
|
|
127
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
128
|
+
placeholder='用途'
|
|
129
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
130
|
+
</div>
|
|
131
|
+
<div class="col-sm-2 form-group">
|
|
132
|
+
<label class="font_normal_body">房型</label>
|
|
133
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
134
|
+
placeholder='房型'
|
|
135
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
136
|
+
</div>
|
|
137
|
+
<div class="col-sm-2 form-group">
|
|
138
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
139
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
140
|
+
placeholder='是否一户多表'
|
|
141
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
142
|
+
</div>
|
|
143
|
+
<div class="col-sm-2 form-group">
|
|
144
|
+
<label class="font_normal_body">关联ID</label>
|
|
145
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
146
|
+
placeholder='关联ID'
|
|
147
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
148
|
+
</div>
|
|
119
149
|
</div>
|
|
120
150
|
|
|
121
151
|
</div>
|
|
@@ -157,6 +157,36 @@
|
|
|
157
157
|
close-on-select>
|
|
158
158
|
</v-select>
|
|
159
159
|
</div>
|
|
160
|
+
<div class="col-sm-2 form-group">
|
|
161
|
+
<label class="font_normal_body">房产地址</label>
|
|
162
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
163
|
+
placeholder='房产地址'
|
|
164
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
165
|
+
</div>
|
|
166
|
+
<div class="col-sm-2 form-group">
|
|
167
|
+
<label class="font_normal_body">用途</label>
|
|
168
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
169
|
+
placeholder='用途'
|
|
170
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
171
|
+
</div>
|
|
172
|
+
<div class="col-sm-2 form-group">
|
|
173
|
+
<label class="font_normal_body">房型</label>
|
|
174
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
175
|
+
placeholder='房型'
|
|
176
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
177
|
+
</div>
|
|
178
|
+
<div class="col-sm-2 form-group">
|
|
179
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
180
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
181
|
+
placeholder='是否一户多表'
|
|
182
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
183
|
+
</div>
|
|
184
|
+
<div class="col-sm-2 form-group">
|
|
185
|
+
<label class="font_normal_body">关联ID</label>
|
|
186
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
187
|
+
placeholder='关联ID'
|
|
188
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
189
|
+
</div>
|
|
160
190
|
</div>
|
|
161
191
|
</div>
|
|
162
192
|
</criteria>
|
|
@@ -46,6 +46,38 @@
|
|
|
46
46
|
|
|
47
47
|
</div>
|
|
48
48
|
</div>
|
|
49
|
+
<div class="row">
|
|
50
|
+
<div class="col-sm-2 form-group">
|
|
51
|
+
<label class="font_normal_body">房产地址</label>
|
|
52
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
53
|
+
placeholder='房产地址'
|
|
54
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
55
|
+
</div>
|
|
56
|
+
<div class="col-sm-2 form-group">
|
|
57
|
+
<label class="font_normal_body">用途</label>
|
|
58
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
59
|
+
placeholder='用途'
|
|
60
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
61
|
+
</div>
|
|
62
|
+
<div class="col-sm-2 form-group">
|
|
63
|
+
<label class="font_normal_body">房型</label>
|
|
64
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
65
|
+
placeholder='房型'
|
|
66
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
67
|
+
</div>
|
|
68
|
+
<div class="col-sm-2 form-group">
|
|
69
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
70
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
71
|
+
placeholder='是否一户多表'
|
|
72
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
73
|
+
</div>
|
|
74
|
+
<div class="col-sm-2 form-group">
|
|
75
|
+
<label class="font_normal_body">关联ID</label>
|
|
76
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
77
|
+
placeholder='关联ID'
|
|
78
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
49
81
|
|
|
50
82
|
</div>
|
|
51
83
|
</criteria>
|
|
@@ -109,6 +109,36 @@
|
|
|
109
109
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_operator"
|
|
110
110
|
condition="f_operator like '%{}%'" placeholder="开户人">
|
|
111
111
|
</div>
|
|
112
|
+
<div class="col-sm-2 form-group">
|
|
113
|
+
<label class="font_normal_body">房产地址</label>
|
|
114
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
115
|
+
placeholder='房产地址'
|
|
116
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
117
|
+
</div>
|
|
118
|
+
<div class="col-sm-2 form-group">
|
|
119
|
+
<label class="font_normal_body">用途</label>
|
|
120
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
121
|
+
placeholder='用途'
|
|
122
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
123
|
+
</div>
|
|
124
|
+
<div class="col-sm-2 form-group">
|
|
125
|
+
<label class="font_normal_body">房型</label>
|
|
126
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
127
|
+
placeholder='房型'
|
|
128
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
129
|
+
</div>
|
|
130
|
+
<div class="col-sm-2 form-group">
|
|
131
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
132
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
133
|
+
placeholder='是否一户多表'
|
|
134
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
135
|
+
</div>
|
|
136
|
+
<div class="col-sm-2 form-group">
|
|
137
|
+
<label class="font_normal_body">关联ID</label>
|
|
138
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
139
|
+
placeholder='关联ID'
|
|
140
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
141
|
+
</div>
|
|
112
142
|
</div>
|
|
113
143
|
</div>
|
|
114
144
|
</criteria>
|
|
@@ -92,6 +92,36 @@
|
|
|
92
92
|
condition="{}"
|
|
93
93
|
close-on-select></v-select>
|
|
94
94
|
</div>
|
|
95
|
+
<div class="col-sm-2 form-group">
|
|
96
|
+
<label class="font_normal_body">房产地址</label>
|
|
97
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
98
|
+
placeholder='房产地址'
|
|
99
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
100
|
+
</div>
|
|
101
|
+
<div class="col-sm-2 form-group">
|
|
102
|
+
<label class="font_normal_body">用途</label>
|
|
103
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
104
|
+
placeholder='用途'
|
|
105
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
106
|
+
</div>
|
|
107
|
+
<div class="col-sm-2 form-group">
|
|
108
|
+
<label class="font_normal_body">房型</label>
|
|
109
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
110
|
+
placeholder='房型'
|
|
111
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
112
|
+
</div>
|
|
113
|
+
<div class="col-sm-2 form-group">
|
|
114
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
115
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
116
|
+
placeholder='是否一户多表'
|
|
117
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
118
|
+
</div>
|
|
119
|
+
<div class="col-sm-2 form-group">
|
|
120
|
+
<label class="font_normal_body">关联ID</label>
|
|
121
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
122
|
+
placeholder='关联ID'
|
|
123
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
124
|
+
</div>
|
|
95
125
|
</div>
|
|
96
126
|
</div>
|
|
97
127
|
</criteria>
|
|
@@ -78,6 +78,36 @@
|
|
|
78
78
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
79
79
|
condition="f_address like '%{}%'" placeholder='客户地址'>
|
|
80
80
|
</div>
|
|
81
|
+
<div class="col-sm-2 form-group">
|
|
82
|
+
<label class="font_normal_body">房产地址</label>
|
|
83
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
84
|
+
placeholder='房产地址'
|
|
85
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
86
|
+
</div>
|
|
87
|
+
<div class="col-sm-2 form-group">
|
|
88
|
+
<label class="font_normal_body">用途</label>
|
|
89
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
90
|
+
placeholder='用途'
|
|
91
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
92
|
+
</div>
|
|
93
|
+
<div class="col-sm-2 form-group">
|
|
94
|
+
<label class="font_normal_body">房型</label>
|
|
95
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
96
|
+
placeholder='房型'
|
|
97
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
98
|
+
</div>
|
|
99
|
+
<div class="col-sm-2 form-group">
|
|
100
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
101
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
102
|
+
placeholder='是否一户多表'
|
|
103
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
104
|
+
</div>
|
|
105
|
+
<div class="col-sm-2 form-group">
|
|
106
|
+
<label class="font_normal_body">关联ID</label>
|
|
107
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
108
|
+
placeholder='关联ID'
|
|
109
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
110
|
+
</div>
|
|
81
111
|
</div>
|
|
82
112
|
|
|
83
113
|
|
|
@@ -88,6 +88,36 @@
|
|
|
88
88
|
close-on-select
|
|
89
89
|
condition="f_meter_book_num = '{}'"></v-select>
|
|
90
90
|
</div>
|
|
91
|
+
<div class="col-sm-2 form-group">
|
|
92
|
+
<label class="font_normal_body">房产地址</label>
|
|
93
|
+
<input class="input_search" condition="f_house_address = '{}'"
|
|
94
|
+
placeholder='房产地址'
|
|
95
|
+
style="width:60%" type="text" v-model="model.f_house_address">
|
|
96
|
+
</div>
|
|
97
|
+
<div class="col-sm-2 form-group">
|
|
98
|
+
<label class="font_normal_body">用途</label>
|
|
99
|
+
<input class="input_search" condition="f_property_usage = '{}'"
|
|
100
|
+
placeholder='用途'
|
|
101
|
+
style="width:60%" type="text" v-model="model.f_property_usage">
|
|
102
|
+
</div>
|
|
103
|
+
<div class="col-sm-2 form-group">
|
|
104
|
+
<label class="font_normal_body">房型</label>
|
|
105
|
+
<input class="input_search" condition="f_house_type = '{}'"
|
|
106
|
+
placeholder='房型'
|
|
107
|
+
style="width:60%" type="text" v-model="model.f_house_type">
|
|
108
|
+
</div>
|
|
109
|
+
<div class="col-sm-2 form-group">
|
|
110
|
+
<label class="font_normal_body">是否一户多表</label>
|
|
111
|
+
<input class="input_search" condition="f_is_multi_meter = '{}'"
|
|
112
|
+
placeholder='是否一户多表'
|
|
113
|
+
style="width:60%" type="text" v-model="model.f_is_multi_meter">
|
|
114
|
+
</div>
|
|
115
|
+
<div class="col-sm-2 form-group">
|
|
116
|
+
<label class="font_normal_body">关联ID</label>
|
|
117
|
+
<input class="input_search" condition="f_house_id = '{}'"
|
|
118
|
+
placeholder='关联ID'
|
|
119
|
+
style="width:60%" type="text" v-model="model.f_house_id">
|
|
120
|
+
</div>
|
|
91
121
|
</div>
|
|
92
122
|
|
|
93
123
|
</div>
|