Browse Source

全部催缴 批量催缴 物业费账单

Shannon_mu 3 years ago
parent
commit
0114cf2817

+ 6 - 1
operationSupport/src/views/payService/call/index.vue

@@ -139,6 +139,7 @@ export default {
                 this.$message.error('您尚未选择要操作项,请选择后再操作');
                 return;
             }
+            let ids = [];
             this.selectRow.forEach((v) => {
                 ids.push(v.id);
             });
@@ -156,7 +157,11 @@ export default {
             this.selectRow = val;
         },
         allNotice() {
-            this.$http.post('/sc-charge/scChargeCallPaymentRecord/allNotice').then(({ status, data, msg }) => {
+            if (!this.mixins_list.length) {
+                this.$message.error('暂无数据无法催缴');
+                return;
+            }
+            this.$http.post('/sc-charge/scChargeCallPaymentRecord/allNotice', this.mixins_query).then(({ status, data, msg }) => {
                 if (0 === status) {
                     this.$message({
                         type: 'success',

+ 2 - 1
operationSupport/src/views/payService/propertyFee/index.vue

@@ -334,7 +334,8 @@ export default {
     created() {
         this.mixins_dataUrl = '/sc-charge/charge/bill/page'; // 分页查询接口
         this.mixins_query = {
-            chargeStatus: this.chargeStatus
+            chargeStatus: this.chargeStatus,
+            chargeType:1,
         };
     }
 };