|
|
@@ -35,7 +35,7 @@
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="commonAuditClick(1)">提交审核</el-button> -->
|
|
|
|
|
|
<el-button type="primary" size="mini"
|
|
|
- v-if="(Number(formData.Status)<=0&&saveButton)||(formData.Status=='4'&&auditBtn)"
|
|
|
+ v-if="(Number(formData.Status)<=0&&saveButton) || (formData.Status=='4'&&auditBtn) || (formData.Status == '7' && auditBtn)"
|
|
|
@click="onSeaveBigAdd">保存</el-button>
|
|
|
<el-button @click="onBack" type="primary" size="mini" style="margin-left: 8px">返回</el-button>
|
|
|
</span>
|
|
|
@@ -392,6 +392,7 @@ export default {
|
|
|
break
|
|
|
// 企管法规处
|
|
|
case 7:
|
|
|
+ this.onSeaveBigAdd()
|
|
|
this.$refs.submitpopup.dialogCommonAuditMakeSureVisible = true
|
|
|
break
|
|
|
}
|
|
|
@@ -533,12 +534,12 @@ export default {
|
|
|
console.log('params', params)
|
|
|
apiCert.isAccess(params, this.$axios).then(res => {
|
|
|
this.auditBtn = res.data
|
|
|
- if (this.formData.Status == '4' && res.data) {
|
|
|
+ if ((this.formData.Status == '4' || this.formData.Status == '7') && res.data) {
|
|
|
this.auditBtnBooleanZhuan = true
|
|
|
} else {
|
|
|
this.auditBtnBooleanZhuan = false
|
|
|
}
|
|
|
- if (Number(this.formData.Status) <= 0) {
|
|
|
+ if (Number(this.formData.Status) <= 0 || (this.formData.Status == '7' && res.data)) {
|
|
|
this.auditBtnBoolean = true
|
|
|
} else {
|
|
|
this.auditBtnBoolean = false
|