|
@@ -1290,18 +1290,31 @@ export default {
|
|
recvAccNm: "",
|
|
recvAccNm: "",
|
|
tranAmt: self.needPay,
|
|
tranAmt: self.needPay,
|
|
businessId: self.zciId,
|
|
businessId: self.zciId,
|
|
|
|
+ type: "00",
|
|
};
|
|
};
|
|
transfer(map)
|
|
transfer(map)
|
|
.then((response) => {
|
|
.then((response) => {
|
|
loading.close();
|
|
loading.close();
|
|
- self.msgSuccess("缴费成功");
|
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
- if (response.data.status == "AAAAAAA") {
|
|
|
|
- updateChargeStatus(zfrId).then(
|
|
|
|
|
|
+ if (response.data.status == "1") {
|
|
|
|
+ self.msgSuccess("缴费成功");
|
|
|
|
+ updateChargeStatus(zfrId, "02").then(
|
|
(res) => {
|
|
(res) => {
|
|
self.getContractFile();
|
|
self.getContractFile();
|
|
}
|
|
}
|
|
);
|
|
);
|
|
|
|
+ } else if (response.data.status == "0") {
|
|
|
|
+ self.message("正在缴费中,请稍后再试");
|
|
|
|
+ updateChargeStatus(zfrId, "01").then(
|
|
|
|
+ (res) => {}
|
|
|
|
+ );
|
|
|
|
+ } else if (response.data.status == "2") {
|
|
|
|
+ self.msgError(
|
|
|
|
+ "缴费失败,前去费用管理再次缴费"
|
|
|
|
+ );
|
|
|
|
+ updateChargeStatus(zfrId, "05").then(
|
|
|
|
+ (res) => {}
|
|
|
|
+ );
|
|
}
|
|
}
|
|
}, 1000);
|
|
}, 1000);
|
|
})
|
|
})
|