apply-clients 5.0.35-12 → 5.0.35-18
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 +1 -1
- package/src/apply.js +153 -153
- package/src/components/product/Function/functions/InstallFee.vue +1080 -947
- package/src/components/product/Process/ExplorationSelect.vue +2 -2
- package/src/components/product/Process/Processes/CustomerRecordMessage.vue +2 -5
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +303 -305
- package/src/components/product/Process/Processes/Service/PaperTicketBill.vue +85 -85
- package/src/components/product/ServiceView.vue +1 -1
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +6 -5
- package/src/components/product/Supervisory/SupervisoryList.vue +1 -1
- package/src/ezhouAndroid.js +44 -44
- package/src/plugins/commonService.js +233 -234
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
<label class="col-sm-4 control-label">报建类型</label>
|
|
95
95
|
<div class="col-sm-8">
|
|
96
96
|
<v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'报装申请',value:'报装申请'},{label:'集体报建',value:'集体报建'}]"
|
|
97
|
-
condition="f_apply_type = '{}'" placeholder='报建类型'
|
|
97
|
+
condition="f_apply_type = '{}'" placeholder='报建类型' :search="true"
|
|
98
98
|
v-model="model.f_apply_type" :value.sync="model.f_apply_type" close-on-select>
|
|
99
99
|
</v-select>
|
|
100
100
|
</div>
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
<div class="col-sm-2" style="float: left">
|
|
113
113
|
<label class="col-sm-4 control-label">报装来源</label>
|
|
114
114
|
<div class="col-sm-8">
|
|
115
|
-
<v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'燃气系统',value:'燃气系统'},{label:'微信',value:'微信'}]"
|
|
115
|
+
<v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'燃气系统',value:'燃气系统'},{label:'微信',value:'微信'},{label:'住建局',value:'住建局'}]"
|
|
116
116
|
condition="f_apply_source = '{}'" placeholder='报装来源'
|
|
117
117
|
v-model="model.f_apply_source" :value.sync="model.f_apply_source" close-on-select>
|
|
118
118
|
</v-select>
|
|
@@ -598,21 +598,18 @@
|
|
|
598
598
|
if (!this.selectdata)
|
|
599
599
|
return
|
|
600
600
|
let data = {
|
|
601
|
-
tablename: 't_userinfo',
|
|
601
|
+
tablename: 't_userinfo u left join t_user_address ua on u.f_userinfo_id=ua.f_userinfo_id',
|
|
602
602
|
condition: 'f_process_id=' + '\'' + this.selectdata.f_process_id + '\''
|
|
603
603
|
}
|
|
604
604
|
let self = this
|
|
605
605
|
let http = new HttpResetClass()
|
|
606
|
-
let res = await http.load('POST', 'rs/sql/
|
|
606
|
+
let res = await http.load('POST', 'rs/sql/singleTableUserInfo', {data: data}, {
|
|
607
607
|
resolveMsg: null,
|
|
608
608
|
rejectMsg: '获取户档案信息失败'
|
|
609
609
|
})
|
|
610
610
|
self.model.rows = []
|
|
611
|
-
|
|
612
611
|
self.model.rows = res.data
|
|
613
612
|
self.params = res.data
|
|
614
|
-
|
|
615
|
-
|
|
616
613
|
},
|
|
617
614
|
impexcel() {
|
|
618
615
|
this.importtype='1'
|