|
@@ -6,7 +6,15 @@
|
|
|
<detailTopInfo :topTitle="topTitle" :display="display" @goBack="goBack"></detailTopInfo>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="main">
|
|
|
- <detailInfo :ruleForm="ruleForm" :rzlc="rzlc" :sshy="sshy" @submitForm="submitForm" @resetForm="resetForm" :formTitle="formTitle"></detailInfo>
|
|
|
+ <detailInfo
|
|
|
+ :ruleForm="ruleForm"
|
|
|
+ :rzlc="rzlc"
|
|
|
+ :sshy="sshy"
|
|
|
+ @submitForm="submitForm"
|
|
|
+ @resetForm="resetForm"
|
|
|
+ @shenheForm="shenheForm"
|
|
|
+ :formTitle="formTitle"
|
|
|
+ ></detailInfo>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -68,6 +76,12 @@ export default {
|
|
|
this.$checkRes(res, '修改成功', '修改失败');
|
|
|
this.$router.push({ path: '/institution/index/0' });
|
|
|
},
|
|
|
+ async shenheForm({ data }) {
|
|
|
+ data.status = '2';
|
|
|
+ let res = this.update(data);
|
|
|
+ this.$checkRes(res, '审核成功', '审核失败');
|
|
|
+ this.$router.push({ path: '/institution/index/0' });
|
|
|
+ },
|
|
|
// 取消
|
|
|
resetForm() {
|
|
|
this.$router.push({ path: '/financial/index' });
|