@@ -895,7 +895,7 @@ export default {
methods: {
checkStatus (val) {
- if (val === '0' || val === '' || val < '0') {
+ if (val === '' || (val <= '0' && val != '-7')) {
return false
} else {
return true
@@ -896,7 +896,7 @@ export default {
@@ -946,18 +946,18 @@
},
created () {
this.isCanApply()
- //查询条件初始值备份
- Object.assign(this.searchFormReset, this.searchForm)
- //查询列表
- this.initDatas()
- //this.getDictOptions()
- },
+ // 查询条件初始值备份
+ Object.assign(this.searchFormReset, this.searchForm)
+ // 查询列表
+ this.initDatas()
+ // this.getDictOptions()
+ },
- if (val == '0' || val == '' || val == '-1' || val == '-2' || val == '-4') {
+ if (val == '' || (val <= 0 && val != '-7')) { // 准入申请:待入库驳回(已交费)不允许删除
- } else{
+ } else {
}
@@ -899,7 +899,7 @@ export default {
@@ -1041,7 +1041,7 @@
isAccess () {
this.getAuditStepCodeByStatus()
let params = {
- id: this.formData.Id,
+ id: this.formData.CertId,
auditstepcode: this.auditstepcode,
processkey: 'oil_enuser_supplier_apply' // 准入审批流程code
@@ -1040,7 +1040,7 @@
@@ -1047,7 +1047,7 @@