manage-client 3.3.228 → 3.3.230
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/package.json
CHANGED
|
@@ -178,16 +178,13 @@ export default {
|
|
|
178
178
|
this.model.search('1=1')
|
|
179
179
|
},
|
|
180
180
|
getReportInfo (tname, cond) {
|
|
181
|
-
this.$
|
|
182
|
-
data: {
|
|
181
|
+
this.$resetpost('api/af-revenue/sql/manageSingleTable',{data: {
|
|
183
182
|
tablename: tname ? tname : this.tablename,
|
|
184
183
|
condition: cond ? cond : this.conditionStr
|
|
185
|
-
}
|
|
186
|
-
}).then((res) => {
|
|
184
|
+
}},{rejectMsg:null,resolveMsg:null}).then((res) => {
|
|
187
185
|
console.log('sssss:', res.data)
|
|
188
186
|
this.types = res.data
|
|
189
187
|
}).catch((error) => {
|
|
190
|
-
|
|
191
188
|
})
|
|
192
189
|
},
|
|
193
190
|
// 返回
|
|
@@ -483,6 +483,14 @@
|
|
|
483
483
|
condition="f_network_valve='{}'">
|
|
484
484
|
</v-select>
|
|
485
485
|
</div>
|
|
486
|
+
<div class="col-sm-2 form-group" title="参数名称:【报装性质】">
|
|
487
|
+
<label class="font_normal_body">报装性质</label>
|
|
488
|
+
<v-select :value.sync="model.f_bz_nature"
|
|
489
|
+
v-model="model.f_bz_nature"
|
|
490
|
+
:options='$parent.$parent.bznature' placeholder='请选择'
|
|
491
|
+
condition="f_bz_nature = '{}'"
|
|
492
|
+
close-on-select></v-select>
|
|
493
|
+
</div>
|
|
486
494
|
</div>
|
|
487
495
|
</div>
|
|
488
496
|
</criteria>
|
|
@@ -529,6 +537,9 @@
|
|
|
529
537
|
<th>
|
|
530
538
|
<nobr>建档日期</nobr>
|
|
531
539
|
</th>
|
|
540
|
+
<th>
|
|
541
|
+
<nobr>报装性质</nobr>
|
|
542
|
+
</th>
|
|
532
543
|
<th>
|
|
533
544
|
<nobr>供气合同编号</nobr>
|
|
534
545
|
</th>
|
|
@@ -737,6 +748,9 @@
|
|
|
737
748
|
<td style="text-align: center;"><nobr>{{row.f_address}}</nobr></td>
|
|
738
749
|
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
739
750
|
<td style="text-align: center;"><nobr>{{row.f_createfile_date}}</nobr></td>
|
|
751
|
+
|
|
752
|
+
<td style="text-align: center;"><nobr>{{row.f_bz_nature}}</nobr></td>
|
|
753
|
+
|
|
740
754
|
<td style="text-align: center;"><nobr>{{row.f_contract_id}}</nobr></td>
|
|
741
755
|
<td style="text-align: center;"><nobr>{{row.f_gas_date}}</nobr></td>
|
|
742
756
|
<td style="text-align: center;"><nobr>{{row.f_gas_person}}</nobr></td>
|
|
@@ -1426,6 +1440,9 @@
|
|
|
1426
1440
|
person() {
|
|
1427
1441
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('安装人')]
|
|
1428
1442
|
},
|
|
1443
|
+
bznature() {
|
|
1444
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('报装性质')]
|
|
1445
|
+
},
|
|
1429
1446
|
tablestate() {
|
|
1430
1447
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('表具状态')]
|
|
1431
1448
|
},
|
|
@@ -214,7 +214,7 @@ export default{
|
|
|
214
214
|
compreConfig: {
|
|
215
215
|
'f_user_state': '客户状态', 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_card_id': '卡号', 'f_user_name': '客户名称',
|
|
216
216
|
'f_residential_area': '小区名称', 'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号', 'f_address': '详细地址',
|
|
217
|
-
'f_user_phone': '联系电话', 'f_usetype': '使用类型',
|
|
217
|
+
'f_user_phone': '联系电话', 'f_usetype': '使用类型', 'f_bz_nature': '报装性质',
|
|
218
218
|
'f_gas_date': '通气日期', 'f_subscribe_date': '预约通气时间', 'f_price_name': '气价名称', 'f_position': '安装位置', 'f_meter_type': '类型', 'f_meter_brand': '品牌',
|
|
219
219
|
'f_meternumber': '表号', 'f_metertitles': '表封号', 'f_aroundmeter': '表向', 'f_install_date': '气表安装日期', 'f_meter_base': '气表底数',
|
|
220
220
|
'f_balance': '账户余额', 'f_hand_date': '最后抄表日期', 'f_whether_hairpin': '是否发卡',
|