|
@@ -107,7 +107,7 @@
|
|
|
<el-table-column
|
|
|
label="身份证号码"
|
|
|
align="center"
|
|
|
- prop="idCode"
|
|
|
+ prop="idcode"
|
|
|
:show-overflow-tooltip="true"
|
|
|
/>
|
|
|
<el-table-column label="联系方式" align="center" prop="phone" />
|
|
@@ -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" },
|
|
@@ -870,11 +875,15 @@ export default {
|
|
|
ntry: [],
|
|
|
// 判断是修改还是增加
|
|
|
sbuen: 0, //0 新增 1 修改
|
|
|
+ jeutu:{
|
|
|
+ bmProjectId:0
|
|
|
+ }
|
|
|
// id:0
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.bmProjectId = this.$route.query.setid;
|
|
|
+ this.jeutu.bmProjectId = this.bmProjectId
|
|
|
this.setrd = this.$route.query.setrd;
|
|
|
console.log(this.bmProjectId);
|
|
|
this.getList();
|
|
@@ -902,6 +911,7 @@ export default {
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
this.getList();
|
|
|
this.msgSuccess("审核成功");
|
|
|
});
|
|
@@ -921,6 +931,7 @@ export default {
|
|
|
});
|
|
|
})
|
|
|
.then(() => {
|
|
|
+ this.$router.go(-1);
|
|
|
this.getList();
|
|
|
this.msgSuccess("驳回成功");
|
|
|
});
|
|
@@ -1018,6 +1029,7 @@ export default {
|
|
|
// this.queryParams.phone = 987
|
|
|
console.log(this.queryParams, 98755);
|
|
|
// this.queryParams = this.queryParams.bmProjectId
|
|
|
+ this.fileListhye = []
|
|
|
this.fileListhye = this.queryParams.attachment.split(",");
|
|
|
for (var i = 0; i < this.fileListhye.length; i++) {
|
|
|
this.fileList.push({
|
|
@@ -1036,7 +1048,7 @@ export default {
|
|
|
//企业列表
|
|
|
getListtwo() {
|
|
|
this.loading = true;
|
|
|
- listConfigthert().then((response) => {
|
|
|
+ listConfigthert(this.jeutu).then((response) => {
|
|
|
console.log(response);
|
|
|
this.configList = response.rows;
|
|
|
// this.fileList = this.queryParams.attachment
|
|
@@ -1047,7 +1059,7 @@ export default {
|
|
|
//自然人列表
|
|
|
getListther() {
|
|
|
this.loading = true;
|
|
|
- listConfigfour(this.bmProjectId).then((response) => {
|
|
|
+ listConfigfour(this.jeutu).then((response) => {
|
|
|
console.log(response.rows);
|
|
|
this.configListtwoL = response.rows;
|
|
|
// this.fileList = this.queryParams.attachment
|