|
|
|
@ -164,8 +164,9 @@
|
|
|
|
|
<el-form-item label="是否检查过期" prop="prefix">
|
|
|
|
|
<el-select v-model="inputQuery.checkExpire"
|
|
|
|
|
style="width: 90%" placeholder="" clearable>
|
|
|
|
|
<el-option label="是" :value="true"></el-option>
|
|
|
|
|
<el-option label="否" :value="false"></el-option>
|
|
|
|
|
<el-option label="不处理" :value=0></el-option>
|
|
|
|
|
<el-option label="弹框提醒" :value=1></el-option>
|
|
|
|
|
<el-option label="禁止录入" :value=2></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -176,8 +177,9 @@
|
|
|
|
|
<el-form-item label="是否检查资质过期" prop="prefix">
|
|
|
|
|
<el-select v-model="inputQuery.checkCertExpire"
|
|
|
|
|
style="width: 90%" placeholder="" clearable>
|
|
|
|
|
<el-option label="是" :value="true"></el-option>
|
|
|
|
|
<el-option label="否" :value="false"></el-option>
|
|
|
|
|
<el-option label="不处理" :value=0></el-option>
|
|
|
|
|
<el-option label="弹框提醒" :value=1></el-option>
|
|
|
|
|
<el-option label="禁止录入" :value=2></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -1128,7 +1130,7 @@
|
|
|
|
|
import {candidateBusType} from '@/api/basic/busType'
|
|
|
|
|
import busTypeAdvancedSettings from '@/views/basic/busType/busTypeAdvancedSettings.vue'
|
|
|
|
|
import {isBlank} from '@/utils/strUtil'
|
|
|
|
|
import {getOriginBusType,selectList} from '@/api/basic/busOriginType'
|
|
|
|
|
import {getOriginBusType, selectList} from '@/api/basic/busOriginType'
|
|
|
|
|
import {getBasicUnitMaintains2} from '@/api/basic/basicUnitMaintain'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -1263,17 +1265,17 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectBussinessList(){
|
|
|
|
|
selectBussinessList() {
|
|
|
|
|
selectList().then((res) => {
|
|
|
|
|
this.preInBackList=res.data;
|
|
|
|
|
this.preInBackList = res.data;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getPreInBack(){
|
|
|
|
|
if(this.inputQuery.preInBack==false){
|
|
|
|
|
this.inputQuery.preInBackAction=null;
|
|
|
|
|
this.inputQuery.backPreinType='';
|
|
|
|
|
}else{
|
|
|
|
|
this.inputQuery.backPreinType=1;
|
|
|
|
|
getPreInBack() {
|
|
|
|
|
if (this.inputQuery.preInBack == false) {
|
|
|
|
|
this.inputQuery.preInBackAction = null;
|
|
|
|
|
this.inputQuery.backPreinType = '';
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.backPreinType = 1;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//获取单据类型
|
|
|
|
@ -1359,9 +1361,9 @@ export default {
|
|
|
|
|
this.selectBussinessList()
|
|
|
|
|
this.oldData = Object.assign({}, this.inputQuery)
|
|
|
|
|
debugger
|
|
|
|
|
if(this.inputQuery.id==null || this.inputQuery.id==''){
|
|
|
|
|
this.inputQuery.codeFillCheck=false;
|
|
|
|
|
this.inputQuery.preInBack=false;
|
|
|
|
|
if (this.inputQuery.id == null || this.inputQuery.id == '') {
|
|
|
|
|
this.inputQuery.codeFillCheck = false;
|
|
|
|
|
this.inputQuery.preInBack = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|