apply-clients 5.0.35-82 → 5.0.35-85
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/Gongcheng.vue +5 -5
- package/src/components/app_apply/ServiceControl.vue +7 -3
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryServiceControl.vue +490 -486
- package/src/components/product/Function/functions/InstallFee.vue +1154 -1155
- package/src/components/product/Function/functions/InstallFeeInfo.vue +6 -1
- package/src/components/product/Supervisory/SupervisoryList.vue +15 -7
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
<label class = "col-sm-5 control-label">用户类型:</label>
|
|
27
27
|
<span class = "col-sm-7">{{model.f_user_type}}</span>
|
|
28
28
|
</div>
|
|
29
|
+
<div class="row">
|
|
30
|
+
<label class = "col-sm-5 control-label">支付账户:</label>
|
|
31
|
+
<span class = "col-sm-7">{{model.f_payment_account}}</span>
|
|
32
|
+
</div>
|
|
29
33
|
<div class="row">
|
|
30
34
|
<label class = "col-sm-5 control-label">申请户数:</label>
|
|
31
35
|
<span class = "col-sm-7">{{model.f_user_type}}</span>
|
|
@@ -96,7 +100,8 @@
|
|
|
96
100
|
f_user_type: '无',
|
|
97
101
|
f_house_type: '无',
|
|
98
102
|
f_residential_area: '无',
|
|
99
|
-
f_apply_remarks: '无'
|
|
103
|
+
f_apply_remarks: '无',
|
|
104
|
+
f_payment_account: '无'
|
|
100
105
|
}
|
|
101
106
|
}
|
|
102
107
|
},
|
|
@@ -53,7 +53,15 @@
|
|
|
53
53
|
</v-select>
|
|
54
54
|
</div>
|
|
55
55
|
</div>
|
|
56
|
-
|
|
56
|
+
<div class="col-sm-2" >
|
|
57
|
+
<label class="col-sm-4 control-label">支付账户</label>
|
|
58
|
+
<div class="col-sm-8">
|
|
59
|
+
<v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'安泰',value:'安泰'},{label:'欣泰',value:'欣泰'}]"
|
|
60
|
+
condition="f_payment_account = '{}'" placeholder='支付账户'
|
|
61
|
+
v-model="model.f_payment_account" :value.sync="model.f_payment_account" close-on-select>
|
|
62
|
+
</v-select>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
57
65
|
</div>
|
|
58
66
|
<div class="col-sm-12" style="margin-top:5px;">
|
|
59
67
|
<div class="col-sm-2">
|
|
@@ -388,12 +396,12 @@
|
|
|
388
396
|
}
|
|
389
397
|
</script>
|
|
390
398
|
<style>
|
|
391
|
-
label {
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
}
|
|
399
|
+
/*label {*/
|
|
400
|
+
/* display: flex;*/
|
|
401
|
+
/* justify-content:center;*/
|
|
402
|
+
/* align-items:Center;*/
|
|
403
|
+
/* padding-top: 8px;*/
|
|
404
|
+
/*}*/
|
|
397
405
|
tr.title {
|
|
398
406
|
background-color: #6666ff;
|
|
399
407
|
}
|