|
@@ -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',
|