|
@@ -955,9 +955,15 @@ const handleAddFee = (item) => {
|
|
|
remarks: item.remarks,
|
|
|
status: 20,
|
|
|
};
|
|
|
- proxy.post("accountDeptRunningWater/add", addData).then((res) => {
|
|
|
- ElMessage({ message: "添加成功", type: "success" });
|
|
|
- });
|
|
|
+ proxy.$modal
|
|
|
+ .confirm("是否确认添加部门费用")
|
|
|
+ .then(function () {
|
|
|
+ proxy.post("accountDeptRunningWater/add", addData).then((res) => {
|
|
|
+ ElMessage({ message: "添加成功", type: "success" });
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .then(() => {})
|
|
|
+ .catch(() => {});
|
|
|
};
|
|
|
</script>
|
|
|
|