|
|
@@ -106,8 +106,8 @@
|
|
|
<img :src="'data:image/jpeg;base64,' + this.fileUrl" style="overflow: auto; width: 100%; height: 100%;"/>
|
|
|
</el-dialog>
|
|
|
<!--去融资-->
|
|
|
- <el-dialog :visible.sync="goShow" width="500px" append-to-body :before-close = "cancelGo" center>
|
|
|
- <span>恭喜您成功签收一笔融信</span>
|
|
|
+ <el-dialog :visible.sync="goShow" width="300px" append-to-body :before-close = "cancelGo" center>
|
|
|
+ <p>恭喜您成功签收一笔融信</p>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="goFinance">去融资</el-button>
|
|
|
<el-button @click="cancelGo">取 消</el-button>
|
|
|
@@ -525,29 +525,21 @@ export default {
|
|
|
this.closePdfShow();
|
|
|
//确权:状态为待确权
|
|
|
if(this.zfiStatus == '00'){
|
|
|
- this.msgSuccess("确权成功,融信已提交,"+this.receiveName+"签收");
|
|
|
- this.$store.dispatch(
|
|
|
- "tagsView/delView",
|
|
|
- this.$route
|
|
|
- );
|
|
|
- this.$router.go(-1);
|
|
|
+ if(this.zfiCreateType == '0'){//申请
|
|
|
+ this.msgSuccess("确权成功,融信已提交,"+this.receiveName+"签收");
|
|
|
+ this.goParent();
|
|
|
+ }else if(this.zfiCreateType == '2'){//供应商开立
|
|
|
+ this.goShow = true;
|
|
|
+ }
|
|
|
}else if(this.zfiStatus == '01' && this.zfiCreateType == '0'){//签收
|
|
|
this.goShow = true;
|
|
|
}else if(this.zfiCreateType == '1' && this.zfiCoreStatus == '01' && !this.zfiStatus){//核心开立
|
|
|
this.msgSuccess("开立成功,融信已提交"+this.receiveName+"签收");
|
|
|
- this.$store.dispatch(
|
|
|
- "tagsView/delView",
|
|
|
- this.$route
|
|
|
- );
|
|
|
- this.$router.go(-1);
|
|
|
+ this.goParent();
|
|
|
}else if(this.zfiCreateType == '2' && this.zfiPlatformStatus == '01' && this.zfiSupplierStatus == '01' && !this.zfiStatus){
|
|
|
//融资开立盖章
|
|
|
this.msgSuccess("开立成功,待:"+this.openName+"确权;确权结果请留意待办事项与站内消息");
|
|
|
- this.$store.dispatch(
|
|
|
- "tagsView/delView",
|
|
|
- this.$route
|
|
|
- );
|
|
|
- this.$router.go(-1);
|
|
|
+ this.goParent();
|
|
|
}else if(scope.row.zfiCreateType == '1' && this.zfiSupplierStatus == '01' && this.zfiPlatformStatus == '01'){//补充资料
|
|
|
this.goShow = true;
|
|
|
}
|
|
|
@@ -611,6 +603,10 @@ export default {
|
|
|
closePdfShow(){
|
|
|
this.parent.closePdfShow();
|
|
|
},
|
|
|
+ //返回到列表页
|
|
|
+ goParent(){
|
|
|
+ this.parent.goParent();
|
|
|
+ },
|
|
|
//去融资
|
|
|
goFinance(){
|
|
|
//关闭当前页
|
|
|
@@ -620,6 +616,8 @@ export default {
|
|
|
);
|
|
|
//关闭弹框
|
|
|
this.goShow = false;
|
|
|
+ //关闭文件弹框
|
|
|
+ this.closePdfShow();
|
|
|
Cookies.set("/credit/goFinance/"+this.zfiId + "/", this.$route.fullPath)
|
|
|
this.$router.push({ path: "/credit/goFinance/"+this.zfiId + "/" });
|
|
|
}
|