|
|
@@ -970,8 +970,8 @@ export default {
|
|
|
text: 'Loading',
|
|
|
background: 'rgba(0, 0, 0,0)'
|
|
|
});
|
|
|
- //如果签发金额小于合计金额
|
|
|
- if((parseFloat(this.form.zfiAmount)) < (parseFloat(this.moneyDelete(this.checkTotalAmt)))){
|
|
|
+ //如果签发金额小于合计金额(通过需判断)
|
|
|
+ if(((parseFloat(this.form.zfiAmount)) < (parseFloat(this.moneyDelete(this.checkTotalAmt)))) && "00" == param){
|
|
|
var _this = this;
|
|
|
this.$confirm('签发金额小于应收金额合计,是否确认提交', "警告", {
|
|
|
confirmButtonText: "确定",
|
|
|
@@ -984,15 +984,15 @@ export default {
|
|
|
signFor(_this.form).then(response => {
|
|
|
loading.close();
|
|
|
//通过
|
|
|
- if("00" == param){
|
|
|
+ /* if("00" == param){ */
|
|
|
_this.msgSuccess("融信资料已提交内部审核");
|
|
|
_this.$store.dispatch("tagsView/delView", _this.$route);
|
|
|
_this.$router.go(-1);
|
|
|
- }else if ("01" == param){//拒绝
|
|
|
+ /* }else if ("01" == param){//拒绝
|
|
|
_this.msgSuccess("该笔融信将作废");
|
|
|
_this.$store.dispatch("tagsView/delView", _this.$route);
|
|
|
_this.$router.go(-1);
|
|
|
- }
|
|
|
+ } */
|
|
|
}).catch((response)=>{
|
|
|
loading.close();
|
|
|
});
|