马宇豪
2025-03-07 db905ecd14f63dba9337b4f4715584ef2d7e8c7e
src/views/specialOperationsPay/notCoalPay/components/addDialog.vue
@@ -180,9 +180,15 @@
      getNotCoalPayCategory({categoryType: type,districtCode: this.dataForm.districtCode?this.dataForm.districtCode:''}).then((res) => {
        if (res.code == 200) {
          if(type == 1){
            this.dealList = res.rows
            this.dealList = res.rows.map(i=>{
              i.subjectName = i.subjectName + '  ('+ i.amount +'元)'
              return i
            })
          }else{
            this.operationList = res.rows
            this.operationList = res.rows.map(i=>{
              i.subjectName = i.subjectName + '  ('+ i.amount +'元)'
              return i
            })
          }
        }
      })