|
|
@@ -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()
|
|
|
+ },
|
|
|
|
|
|
methods: {
|
|
|
checkStatus (val) {
|
|
|
- if (val == '0' || val == '' || val == '-1' || val == '-2' || val == '-4') {
|
|
|
+ if (val == '' || (val <= 0 && val != '-7')) { // 准入申请:待入库驳回(已交费)不允许删除
|
|
|
return false
|
|
|
- } else{
|
|
|
+ } else {
|
|
|
return true
|
|
|
}
|
|
|
},
|