|
@@ -830,6 +830,11 @@ export default {
|
|
|
message: "投资方联系方式不能为空",
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
+ {
|
|
|
+ pattern: /^0{0,1}(13[0-9]|15[7-9]|153|156|18[7-9])[0-9]{8}$/,
|
|
|
+ message: "手机号格式不对",
|
|
|
+ trigger: "blur",
|
|
|
+ }
|
|
|
],
|
|
|
needAmt: [
|
|
|
{ required: true, message: "预计投资额不能为空", trigger: "blur" },
|
|
@@ -906,6 +911,7 @@ export default {
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
this.getList();
|
|
|
this.msgSuccess("审核成功");
|
|
|
});
|
|
@@ -925,6 +931,7 @@ export default {
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
this.getList();
|
|
|
this.msgSuccess("驳回成功");
|
|
|
});
|