|
|
@@ -31,6 +31,7 @@
|
|
|
<!--<el-button type="primary" size="mini" style="margin-left: 8px" @click="AuditEntity" v-if="auditBtn && this.formData.Status != '6'">1{{auditTitle}}</el-button>-->
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="secUnitSeparateAuditClick()" v-if="auditBtn && parseInt(this.formData.Status) === 10">分办</el-button>
|
|
|
<!--<el-button type="primary" size="mini" style="margin-left: 8px" @click="paySureClick()" v-if="auditBtn && parseInt(this.formData.Status) === 6">交费</el-button>-->
|
|
|
+ <el-button type="primary" size="mini" style="margin-left: 8px" @click="commonAuditClick" v-if="auditBtn && this.formData.Status === '9'" :loading="btnLoading">企管法规处审批</el-button>
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="confirm" v-if="auditBtn && this.formData.Status === '7'" :loading="btnLoading">审批入库</el-button>
|
|
|
<el-button type="warning" size="mini" style="margin-right: 5px" @click="backStatus" v-if="auditBtn && formData.Status == '7'" :loading="btnLoading">退回</el-button>
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px;" onclick="window.history.go(-1)">返回</el-button>
|
|
|
@@ -52,9 +53,9 @@
|
|
|
<el-input :class="changedForm['SupplierName'] ? 'modified-form-input' : ''" :readonly="formData.Status > 0"
|
|
|
v-model="supplierData.SupplierName" :maxlength="255" placeholder="请输入" style="width: 100%">
|
|
|
</el-input>
|
|
|
-<!-- <el-input v-model="supplierData.SupplierName" :maxlength="255" :readonly="formData.Status > 0"-->
|
|
|
-<!-- placeholder="请输入" style="width: 100%" v-if="!authUser || authUser.Profile.IsCompanyUser == 0">-->
|
|
|
-<!-- </el-input>-->
|
|
|
+ <!--<el-input v-model="supplierData.SupplierName" :maxlength="255" :readonly="formData.Status > 0"-->
|
|
|
+ <!-- placeholder="请输入" style="width: 100%" v-if="!authUser || authUser.Profile.IsCompanyUser == 0">-->
|
|
|
+ <!--</el-input>-->
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
@@ -1235,6 +1236,8 @@
|
|
|
this.auditstepcode = 'PAYING_FEE'
|
|
|
} else if (_this.formData.Status === '7') {
|
|
|
this.auditstepcode = 'PROF_REGULATION_STORAGE'
|
|
|
+ } else if (_this.formData.Status === '9') {
|
|
|
+ this.auditstepcode = 'PROF_REGULATION' // PROF_REGULATION 按照集中审批的权限取人
|
|
|
} else if (_this.formData.Status === '10') {
|
|
|
this.auditstepcode = 'SUB_OFFICE_WZ'
|
|
|
}
|
|
|
@@ -1266,6 +1269,8 @@
|
|
|
this.auditstepcode = 'PAYING_FEE'
|
|
|
} else if (this.Status === '7') {
|
|
|
this.auditstepcode = 'PROF_REGULATION_STORAGE'
|
|
|
+ } else if (this.Status === '9') {
|
|
|
+ this.auditstepcode = 'PROF_REGULATION'
|
|
|
} else if (this.Status === '10') {
|
|
|
this.auditstepcode = 'SUB_OFFICE_WZ'
|
|
|
}
|
|
|
@@ -1585,7 +1590,7 @@
|
|
|
this.btnLoading = false
|
|
|
})
|
|
|
},
|
|
|
- // 分办之后的各级审批 --审批 包含:二级单位初审、复审, 业务处室专业审核
|
|
|
+ // 分办之后的各级审批 --审批 包含:二级单位初审、复审, 业务处室专业审核、企管法规处审核
|
|
|
commonAuditClick () {
|
|
|
console.log('审批公共会话框')
|
|
|
this.dialogCommonAuditMakeSureVisible = true
|