apply-clients 4.1.32-weinan → 4.1.34-weinan
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/components/app_apply/AppChargeManagement.vue +2 -2
- package/src/components/app_apply/AppInstallationDetails.vue +1 -1
- package/src/components/app_apply/ServiceControl.vue +11 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +3 -2
- package/src/components/product/Process/Service/ServiceControl.vue +16 -0
package/package.json
CHANGED
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
</div>
|
|
107
107
|
</div>
|
|
108
108
|
<div v-for="(index,payment) in charge.payment_terms">
|
|
109
|
-
|
|
109
|
+
<div class="form-group row vertical-center" :class="payment.f_payment_term ? '':'has-error'">
|
|
110
110
|
<label class="col-xs-4 control-label">收费项目:</label>
|
|
111
111
|
<div class="col-xs-8">
|
|
112
112
|
<input-select class="select select_list"
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
:value-single="true"
|
|
117
117
|
close-on-select ></input-select>
|
|
118
118
|
</div>
|
|
119
|
-
</div
|
|
119
|
+
</div>
|
|
120
120
|
<div class="form-group row vertical-center" :class="payment.f_charge_money ? '':'has-error'">
|
|
121
121
|
<label class="col-xs-4 control-label">收费金额:</label>
|
|
122
122
|
<div class="col-xs-8">
|
|
@@ -214,13 +214,13 @@
|
|
|
214
214
|
<div class="form-group col-sm-6" :class="[$v.f_install_date.required ? 'has-error' : '']">
|
|
215
215
|
<label class="col-sm-4 control-label">安装日期:</label>
|
|
216
216
|
<div class="col-sm-8">
|
|
217
|
+
<input type="text" v-show="false" v-model="item.f_install_date" :value.sync="item.f_install_date" v-validate:f_install_date = "['required']" >
|
|
217
218
|
<datepicker
|
|
218
219
|
placeholder="安装日期"
|
|
219
220
|
:value.sync="item.f_install_date"
|
|
220
221
|
v-model="item.f_install_date"
|
|
221
222
|
format="yyyy-MM-dd HH:mm:ss"
|
|
222
223
|
:disabled="mark === 1"
|
|
223
|
-
v-validate:f_install_date = "['required']"
|
|
224
224
|
:show-reset-button="reset">
|
|
225
225
|
</datepicker>
|
|
226
226
|
</div>
|
|
@@ -337,6 +337,17 @@
|
|
|
337
337
|
this.stopapply(model1,model)
|
|
338
338
|
return
|
|
339
339
|
}
|
|
340
|
+
if( this.selectdata.defname ==='入户安装'&& model.button.button_name == '提交'){
|
|
341
|
+
let data1 = {
|
|
342
|
+
tablename: 't_userfiles',
|
|
343
|
+
condition: `f_userinfo_id = '${this.selectdata.f_userinfo_id}'`
|
|
344
|
+
}
|
|
345
|
+
let res1 = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/singleTable`, {data: data1}, {resolveMsg: null, rejectMsg: '获取数据失败'})
|
|
346
|
+
if (res1<=0){
|
|
347
|
+
this.$showMessage("请填写表具信息!!!")
|
|
348
|
+
return
|
|
349
|
+
}
|
|
350
|
+
}
|
|
340
351
|
if(this.selectdata.defname =='现场勘察' && this.selectdata.f_apply_type == '工商户报建'&& model.button.button_name == '提交'){
|
|
341
352
|
let http = new HttpResetClass()
|
|
342
353
|
let data = {
|
|
@@ -205,13 +205,13 @@
|
|
|
205
205
|
<div class="form-group col-sm-6" :class="[$v.f_install_date.required ? 'has-error' : '']">
|
|
206
206
|
<label class="col-sm-4 control-label">安装日期:</label>
|
|
207
207
|
<div class="col-sm-8">
|
|
208
|
+
<input type="text" v-show="false" v-model="item.f_install_date" :value.sync="item.f_install_date" v-validate:f_install_date = "['required']" >
|
|
208
209
|
<datepicker
|
|
209
210
|
placeholder="安装日期"
|
|
210
211
|
:value.sync="item.f_install_date"
|
|
211
212
|
v-model="item.f_install_date"
|
|
212
213
|
format="yyyy-MM-dd HH:mm:ss"
|
|
213
214
|
:disabled="mark === 1"
|
|
214
|
-
v-validate:f_install_date = "['required']"
|
|
215
215
|
:show-reset-button="reset">
|
|
216
216
|
</datepicker>
|
|
217
217
|
</div>
|
|
@@ -301,7 +301,8 @@ export default {
|
|
|
301
301
|
resolveMsg: null,
|
|
302
302
|
rejectMsg: '表具添加失败!!!'
|
|
303
303
|
})
|
|
304
|
-
this
|
|
304
|
+
this.showUserFile = false
|
|
305
|
+
this.search()
|
|
305
306
|
},
|
|
306
307
|
// 检查表号是否存在
|
|
307
308
|
async meternumberValidate(i) {
|
|
@@ -801,6 +801,22 @@ export default {
|
|
|
801
801
|
this.stopapply(model1,model)
|
|
802
802
|
return
|
|
803
803
|
}
|
|
804
|
+
if( this.selectdata.defname ==='入户安装'&& model.button.button_name == '提交'){
|
|
805
|
+
let data = {
|
|
806
|
+
condition: " 1=1",
|
|
807
|
+
f_process_id: this.selectdata.f_process_id
|
|
808
|
+
}
|
|
809
|
+
let res1 = await http.load('POST', 'rs/sql/getAddresAndUserinfoAndUserfilesAmount', {data:data}, {
|
|
810
|
+
resolveMsg: null,
|
|
811
|
+
rejectMsg: null
|
|
812
|
+
})
|
|
813
|
+
debugger
|
|
814
|
+
if (res1.data[0].f_userfiles_num===null){
|
|
815
|
+
this.$showMessage("请填写表具信息!!!")
|
|
816
|
+
return
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
}
|
|
804
820
|
let requestData = {
|
|
805
821
|
tables: this.data.tables,
|
|
806
822
|
start_activity: this.$workflow_vue.start_activity,
|