|
|
@@ -6,16 +6,18 @@
|
|
|
<el-breadcrumb-item>技术服务类供方准入评审表</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
<el-card class="box-card">
|
|
|
- <!--<div slot="header">
|
|
|
+ <div slot="header">
|
|
|
<span>
|
|
|
- <i class="icon icon-table2"></i> 编辑
|
|
|
+ <i class="icon icon-table2"></i> 信息
|
|
|
</span>
|
|
|
<span style="float: right;">
|
|
|
+ <el-button type="primary" plain size="mini">年审申请</el-button> <!--v-if="formData.Step>=5"-->
|
|
|
+ <el-button type="primary" plain size="mini">增项申请</el-button>
|
|
|
<router-link :to="'/oilsupplier/supplier/techlist'">
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px">返回</el-button>
|
|
|
</router-link>
|
|
|
</span>
|
|
|
- </div>-->
|
|
|
+ </div>
|
|
|
|
|
|
<el-steps :active="formData.Step" simple align-center finish-status="success">
|
|
|
<el-step title="企业基本信息"></el-step>
|
|
|
@@ -482,7 +484,7 @@
|
|
|
<div slot="header" class="clearfix">
|
|
|
<span>审批流程</span>
|
|
|
<span style="float: right;">
|
|
|
- <el-button type="primary" size="mini" :disabled="formDataCert.Status > 0" @click="AuditEntity">提交审批
|
|
|
+ <el-button type="primary" size="mini" :disabled="formDataCert.Status > 0" :loading="applyLoading" @click="AuditEntity">提交审批
|
|
|
</el-button>
|
|
|
</span>
|
|
|
</div>
|
|
|
@@ -529,8 +531,9 @@
|
|
|
},
|
|
|
name: 'oilsupplierEdit',
|
|
|
|
|
|
- data() {
|
|
|
+ data () {
|
|
|
return {
|
|
|
+ applyLoading: false,
|
|
|
equipmentList: [], //企业主要装备情况
|
|
|
performanceList: [], //近三年主要工程业绩
|
|
|
patentList: [], //拥有专利、专有技术及工法
|
|
|
@@ -782,7 +785,7 @@
|
|
|
return true
|
|
|
},
|
|
|
//企业人员结构情况
|
|
|
- updateNumberEntity() {
|
|
|
+ updateNumberEntity () {
|
|
|
if (!this.CheckCompanyBase()) {
|
|
|
return false
|
|
|
}
|
|
|
@@ -806,6 +809,7 @@
|
|
|
},
|
|
|
|
|
|
AuditEntity() {
|
|
|
+ this.applyLoading = true
|
|
|
apiCert.auditEntity(this.certId, this.$axios).then(res => {
|
|
|
if (res.data.code === 0) {
|
|
|
//保存成功后,初始化数据,变成修改
|
|
|
@@ -820,6 +824,8 @@
|
|
|
message: res.data.message
|
|
|
});
|
|
|
}
|
|
|
+ this.applyLoading = false
|
|
|
+
|
|
|
}).catch(err => {
|
|
|
console.error(err)
|
|
|
});
|