apply-clients 5.0.35-70 → 5.0.35-74
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/ApplyToDoList.vue +2820 -2820
- package/src/components/app_apply/Gongcheng.vue +3614 -3614
- package/src/components/app_apply/ServiceControl.vue +730 -727
- package/src/components/app_apply/ezhou/ServiceView.vue +808 -808
- package/src/components/product/Common/PrintBill.vue +121 -121
- package/src/components/product/EngineeringManagement/EngineerUpload.vue +304 -304
- package/src/components/product/EngineeringManagement/EngineeringManagement.vue +137 -137
- package/src/components/product/EngineeringManagement/EngineeringSelect.vue +588 -588
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +281 -281
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +130 -130
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +350 -350
- package/src/components/product/Function/InstallInfoSelect.vue +255 -255
- package/src/components/product/Function/functions/BuyerMessage.vue +512 -512
- package/src/components/product/Function/functions/InstallFee.vue +8 -1
- package/src/components/product/Process/ExplorationSelect.vue +640 -640
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +3 -2
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2150 -2147
- package/src/components/product/Supervisory/SupervisoryList.vue +403 -350
- package/src/components/product/stopInfo/ApplyStopInfo.vue +281 -281
- package/src/ezhouAndroid.js +48 -48
|
@@ -64,6 +64,9 @@
|
|
|
64
64
|
<th>
|
|
65
65
|
<nobr>地址</nobr>
|
|
66
66
|
</th>
|
|
67
|
+
<th>
|
|
68
|
+
<nobr>缴费状态</nobr>
|
|
69
|
+
</th>
|
|
67
70
|
<th>
|
|
68
71
|
<nobr>操作</nobr>
|
|
69
72
|
</th>
|
|
@@ -74,8 +77,9 @@
|
|
|
74
77
|
<td style="text-align: center">{{row.f_user_name}}</td>
|
|
75
78
|
<td style="text-align: center">{{row.f_user_phone}}</td>
|
|
76
79
|
<td style="text-align: center">{{row.address}}</td>
|
|
80
|
+
<td style="text-align: center">{{row.f_charging_status=='有效'?'已缴':'未缴'}}</td>
|
|
77
81
|
<button type="button" name="button" class="btn btn-link"
|
|
78
|
-
@click.stop="$parent.$parent.$parent.getUserinfo($index)"
|
|
82
|
+
@click.stop="$parent.$parent.$parent.getUserinfo($index)">{{row.f_charging_status=='有效'?'已收':'收费'}}
|
|
79
83
|
</button>
|
|
80
84
|
</template>
|
|
81
85
|
</data-grid>
|
|
@@ -1059,8 +1063,11 @@
|
|
|
1059
1063
|
resolveMsg: null,
|
|
1060
1064
|
rejectMsg: '获取用户信息失败!'
|
|
1061
1065
|
})
|
|
1066
|
+
console.dir(userinfores.data)
|
|
1067
|
+
console.log(userinfores.data[0].f_charging_status=='有效'?'已缴':'未缴')
|
|
1062
1068
|
this.userinfoRow.rows = userinfores.data;
|
|
1063
1069
|
|
|
1070
|
+
|
|
1064
1071
|
this.oldInfo.f_user_name = this.model.f_user_name;
|
|
1065
1072
|
this.oldInfo.f_phone = this.model.f_phone;
|
|
1066
1073
|
this.oldInfo.f_address = this.model.f_address;
|